Uses of Interface
org.ddogleg.fitting.modelset.ModelMatcher
Packages that use ModelMatcher
Package
Description
-
Uses of ModelMatcher in org.ddogleg.fitting.modelset
Subinterfaces of ModelMatcher in org.ddogleg.fitting.modelsetModifier and TypeInterfaceDescriptioninterfaceModelMatcherMulti<Point>Given a set of points and a set of models, it selects which model and model parameters best fits the points robustly.interfaceModelMatcherPost<Model,Point> Extension ofModelMatcherwhere the models are specified after construction. -
Uses of ModelMatcher in org.ddogleg.fitting.modelset.distance
Classes in org.ddogleg.fitting.modelset.distance that implement ModelMatcherModifier and TypeClassDescriptionclassStatisticalDistanceModelMatcher<Model,Point> Outliers are removed by first fitting a model to all the data points. -
Uses of ModelMatcher in org.ddogleg.fitting.modelset.lmeds
Classes in org.ddogleg.fitting.modelset.lmeds that implement ModelMatcherModifier and TypeClassDescriptionclassLeastMedianOfSquares<Model,Point> Another technique similar to RANSAC known as Least Median of Squares (LMedS).classLeastMedianOfSquares_MT<Model,Point> Concurrent version ofLeastMedianOfSquares -
Uses of ModelMatcher in org.ddogleg.fitting.modelset.ransac
Classes in org.ddogleg.fitting.modelset.ransac that implement ModelMatcherModifier and TypeClassDescriptionclassRansac<Model,Point> RANSAC is an abbreviation for "RANdom SAmple Consensus" and is an iterative algorithm.classRansac_MT<Model,Point> Concurrent implementation ofRansac.classRansacMulti<Point>Modification ofRANSACthat finds the best fit model and model parameters to a set of data.