Package boofcv.alg.feature.associate
Class FindUnassociated
java.lang.Object
boofcv.alg.feature.associate.FindUnassociated
public class FindUnassociated extends Object
Given a list of associated features, find all the unassociated features.
-
Constructor Summary
Constructors Constructor Description FindUnassociated()
-
Method Summary
Modifier and Type Method Description DogArray_I32
checkDestination(FastAccess<AssociatedIndex> matches, int featureCount)
Finds unassociated features in destinationDogArray_I32
checkSource(FastAccess<AssociatedIndex> matches, int featureCount)
Finds unassociated features in source
-
Constructor Details
-
FindUnassociated
public FindUnassociated()
-
-
Method Details
-
checkSource
Finds unassociated features in source- Parameters:
matches
- List of matched featuresfeatureCount
- Number of source features- Returns:
- indexes of unassociated features from source
-
checkDestination
Finds unassociated features in destination- Parameters:
matches
- List of matched featuresfeatureCount
- Number of destination features- Returns:
- indexes of unassociated features from destination
-