Uses of Interface
org.ddogleg.fitting.modelset.ModelMatcher
Package
Description
-
Uses of ModelMatcher in org.ddogleg.fitting.modelset
Modifier and TypeInterfaceDescriptioninterface
ModelMatcherMulti<Point>
Given a set of points and a set of models, it selects which model and model parameters best fits the points robustly.interface
ModelMatcherPost<Model,
Point> Extension ofModelMatcher
where the models are specified after construction. -
Uses of ModelMatcher in org.ddogleg.fitting.modelset.distance
Modifier and TypeClassDescriptionclass
StatisticalDistanceModelMatcher<Model,
Point> Outliers are removed by first fitting a model to all the data points. -
Uses of ModelMatcher in org.ddogleg.fitting.modelset.lmeds
Modifier and TypeClassDescriptionclass
LeastMedianOfSquares<Model,
Point> Another technique similar to RANSAC known as Least Median of Squares (LMedS).class
LeastMedianOfSquares_MT<Model,
Point> Concurrent version ofLeastMedianOfSquares
-
Uses of ModelMatcher in org.ddogleg.fitting.modelset.ransac
Modifier and TypeClassDescriptionclass
Ransac<Model,
Point> RANSAC is an abbreviation for "RANdom SAmple Consensus" and is an iterative algorithm.class
Ransac_MT<Model,
Point> Concurrent implementation ofRansac
.class
RansacMulti<Point>
Modification ofRANSAC
that finds the best fit model and model parameters to a set of data.