Uses of Interface
org.ddogleg.fitting.modelset.DistanceFromModel
Packages that use DistanceFromModel
-
Uses of DistanceFromModel in org.ddogleg.fitting.modelset.distance
Fields in org.ddogleg.fitting.modelset.distance declared as DistanceFromModelModifier and TypeFieldDescriptionprotected DistanceFromModel<Model,Point> FitByMeanStatistics.modelErrorMethods in org.ddogleg.fitting.modelset.distance with parameters of type DistanceFromModelModifier and TypeMethodDescriptionvoidFitByMeanStatistics.init(DistanceFromModel<Model, Point> modelError, ArrayDeque<PointIndex<Point>> allPoints) voidFitByMedianStatistics.init(DistanceFromModel<Model, Point> modelError, ArrayDeque<PointIndex<Point>> allPoints) voidStatisticalFit.init(DistanceFromModel<Model, Point> modelDistance, ArrayDeque<PointIndex<Point>> allPoints) This is called once to provide access to internal data structures of the owner.Constructors in org.ddogleg.fitting.modelset.distance with parameters of type DistanceFromModelModifierConstructorDescriptionStatisticalDistanceModelMatcher(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
Fields in org.ddogleg.fitting.modelset.ransac declared as DistanceFromModelModifier and TypeFieldDescriptionRansacMulti.ObjectType.modelDistancecomputes the distance a point is from the modelMethods in org.ddogleg.fitting.modelset.ransac with parameters of type DistanceFromModelModifier and TypeMethodDescriptionvoidRansac.InitializeModels.initialize(ModelGenerator<Model, Point> generator, DistanceFromModel<Model, Point> distance) protected <Model> voidRansacMulti.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.