Package boofcv.alg.feature.associate
Class AssociateNearestNeighbor_MT<D>
java.lang.Object
boofcv.alg.feature.associate.AssociateNearestNeighbor<D>
boofcv.alg.feature.associate.AssociateNearestNeighbor_MT<D>
- All Implemented Interfaces:
Associate<D>,AssociateDescription<D>
Parallel associate version of AssociateNearestNeighbor_ST.
-
Field Summary
Fields inherited from class boofcv.alg.feature.associate.AssociateNearestNeighbor
matchesAll -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidFinds the best match for each item in the source list with an item in the destination list.Returns the type of object it can associatevoidsetDestination(FastAccess<D> listDst) Sets the list of destination features NOTE: A reference to the input list might be saved internally until the next call to this function.voidsetSource(FastAccess<D> listSrc) Sets the list of source features.Methods inherited from class boofcv.alg.feature.associate.AssociateNearestNeighbor
getMatches, getScoreRatioThreshold, getScoreType, getUnassociatedDestination, getUnassociatedSource, isRatioUsesSqrt, setMaxScoreThreshold, setRatioUsesSqrt, setScoreRatioThreshold, uniqueDestination, uniqueSource
-
Constructor Details
-
AssociateNearestNeighbor_MT
-
-
Method Details
-
setSource
Description copied from interface:AssociateDescriptionSets the list of source features. NOTE: A reference to the input list might be saved internally until the next call to this function.- Specified by:
setSourcein interfaceAssociateDescription<D>- Overrides:
setSourcein classAssociateNearestNeighbor<D>- Parameters:
listSrc- List of features
-
setDestination
Description copied from interface:AssociateDescriptionSets the list of destination features NOTE: A reference to the input list might be saved internally until the next call to this function.- Specified by:
setDestinationin interfaceAssociateDescription<D>- Overrides:
setDestinationin classAssociateNearestNeighbor<D>- Parameters:
listDst- List of features
-
associate
public void associate()Description copied from interface:AssociateFinds the best match for each item in the source list with an item in the destination list. -
getDescriptionType
Description copied from interface:AssociateReturns the type of object it can associate
-