Trait sample_consensus::MultiConsensus [−][src]
pub trait MultiConsensus<E, Data> where
E: Estimator<Data>, {
type Inliers: IntoIterator<Item = usize>;
type Models: IntoIterator<Item = (E::Model, Self::Inliers)>;
fn models<I>(&mut self, estimator: &E, data: I) -> Self::Models
where
I: Iterator<Item = Data> + Clone;
}
Expand description
See Consensus
. A multi-consensus can handle situations where different subsets of the data are consistent
with different models. This kind of consensus also considers whether a point is part of another orthogonal
model that is known before assuming it is a true outlier. In this situation there are inliers of different
models and then true outliers that are actual erroneous data that should be filtered out.
Associated Types
type Inliers: IntoIterator<Item = usize>
type Inliers: IntoIterator<Item = usize>
Iterator over the indices of the inliers in the clonable iterator.
Required methods
Takes a slice over the data and an estimator instance. It returns an iterator over all of the models and all of the inliers that are consistent with that model. Every point that is not an inlier of a given model is considered an outlier of that model.
Make sure to shuffle your data
before calling this. You can use
SliceRandom::shuffle
.