Uses of Interface
org.ddogleg.fitting.modelset.DistanceFromModel
-
Uses of DistanceFromModel in org.ddogleg.fitting.modelset.distance
Modifier and TypeFieldDescriptionprotected DistanceFromModel<Model,
Point> FitByMeanStatistics.modelError
Modifier and TypeMethodDescriptionvoid
FitByMeanStatistics.init
(DistanceFromModel<Model, Point> modelError, ArrayDeque<PointIndex<Point>> allPoints) void
FitByMedianStatistics.init
(DistanceFromModel<Model, Point> modelError, ArrayDeque<PointIndex<Point>> allPoints) void
StatisticalFit.init
(DistanceFromModel<Model, Point> modelDistance, ArrayDeque<PointIndex<Point>> allPoints) This is called once to provide access to internal data structures of the owner.ModifierConstructorDescriptionStatisticalDistanceModelMatcher
(int maxIterations, double minChange, double exitCenterError, double failError, int minFitPoints, StatisticalDistance statistics, double pruneThreshold, ModelManager<Model> modelManager, ModelGenerator<Model, Point> modelFitter, DistanceFromModel<Model, Point> modelError, ModelCodec<Model> codec) Creates a new model matcher. -
Uses of DistanceFromModel in org.ddogleg.fitting.modelset.ransac
Modifier and TypeFieldDescriptionRansacMulti.ObjectType.modelDistance
computes the distance a point is from the modelModifier and TypeMethodDescriptionvoid
Ransac.InitializeModels.initialize
(ModelGenerator<Model, Point> generator, DistanceFromModel<Model, Point> distance) protected <Model> void
RansacMulti.selectMatchSet
(List<Point> dataSet, DistanceFromModel<Model, Point> modelDistance, double threshold, Model param) Exhaustively searches through the list of points contained in 'dataSet' for the set of inliers which match the provided model.