Package boofcv.alg.feature.associate
Class EnsureUniqueAssociation
java.lang.Object
boofcv.alg.feature.associate.EnsureUniqueAssociation
Removes any ambiguous associations. If multiple features from the 'src' match the same feature
in the 'dst' then only the association with the lowest 'fitScore' is saved.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionList of unambiguous matches.void
process
(DogArray<AssociatedIndex> matches, int sizeDst) Removes ambiguous associations.
-
Constructor Details
-
EnsureUniqueAssociation
public EnsureUniqueAssociation()
-
-
Method Details
-
process
Removes ambiguous associations. CallgetMatches()
to get the list of unambiguous matches.- Parameters:
matches
- List of candidate associationssizeDst
- Number of 'dst' features
-
getMatches
List of unambiguous matches.- Returns:
- list of matches
-