public class GeoModelEstimator1toN<Model,Point> extends java.lang.Object implements GeoModelEstimatorN<Model,Point>
GeoModelEstimator1 to be used as a GeoModelEstimatorN.| Constructor and Description |
|---|
GeoModelEstimator1toN(GeoModelEstimator1<Model,Point> alg) |
| Modifier and Type | Method and Description |
|---|---|
int |
getMinimumPoints()
Minimum number of points required to estimate the model.
|
boolean |
process(java.util.List<Point> points,
org.ddogleg.struct.FastQueue<Model> estimatedModels)
Estimates a set of models which fit the given a set of observations.
|
public GeoModelEstimator1toN(GeoModelEstimator1<Model,Point> alg)
public boolean process(java.util.List<Point> points, org.ddogleg.struct.FastQueue<Model> estimatedModels)
GeoModelEstimatorNprocess in interface GeoModelEstimatorN<Model,Point>points - Input: Set of observations. Not modified.estimatedModels - Output: Storage for the set of estimated models. Modified.public int getMinimumPoints()
GeoModelEstimatorNgetMinimumPoints in interface GeoModelEstimatorN<Model,Point>