public interface GeoModelEstimator1<Model,Sample>
Creates a single hypothesis 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,
Model estimatedModel)
Estimates the model given a set of observations.
|
boolean process(java.util.List<Sample> points, Model estimatedModel)
points - Input: Set of observations. Not modified.estimatedModel - Output: Storage for the estimated model. Modified.int getMinimumPoints()