Interface ModelMatcherMulti<Point>

Type Parameters:
Point - Type of data point being fitted.
All Superinterfaces:
ModelMatcher<Object,Point>
All Known Implementing Classes:
RansacMulti

public interface ModelMatcherMulti<Point> extends ModelMatcher<Object,Point>

Given a set of points and a set of models, it selects which model and model parameters best fits the points robustly. Some of the points are assumed to be noise and should be pruned. The set of points which fit the found parameters and their index in the input list are returned.

  • Method Details

    • getModelIndex

      int getModelIndex()
      Indicates which model was found to best fit the points. The index is implementation specific and is likely to refer to the index inside a list.
      Returns:
      Index of selected model.