public interface GeoModelEstimatorN<Model,Sample>
Creates multiple hypotheses for the parameters in a model a set of sample points/observations.
| Modifier and Type | Method and Description |
|---|---|
int |
getMinimumPoints()
Minimum number of points required to estimate the model.
|
boolean |
process(java.util.List<Sample> points,
org.ddogleg.struct.FastQueue<Model> estimatedModels)
Estimates a set of models which fit the given a set of observations.
|
boolean process(java.util.List<Sample> points, org.ddogleg.struct.FastQueue<Model> estimatedModels)
points - Input: Set of observations. Not modified.estimatedModels - Output: Storage for the set of estimated models. Modified.int getMinimumPoints()