boofcv.abst.feature.associate
Interface AssociateDescription<Desc>
-
- Type Parameters:
Desc- Feature description type.
- All Superinterfaces:
- Associate
- All Known Implementing Classes:
- AssociateNearestNeighbor, EnforceUniqueByScore.Describe, WrapAssociateGreedy, WrapAssociateSurfBasic
public interface AssociateDescription<Desc> extends Associate
Generalized interface for associating features. Finds matches for each feature in the source list to one in the destination list. There is only one match found for each member of source, but multiple matches can be found for destination. If the best match has an error which is too high then a member of source might not be matched.
DESIGN NOTE:
FastQueueis used instead ofListbecause in the association micro benchmark it produced results that were about 20% faster consistently. Which is surprising since one would think descriptor comparisons would dominate.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description voidsetDestination(FastQueue<Desc> 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(FastQueue<Desc> listSrc)Sets the list of source features.-
Methods inherited from interface boofcv.abst.feature.associate.Associate
associate, getMatches, getScoreType, getUnassociatedDestination, getUnassociatedSource, setThreshold, uniqueDestination, uniqueSource
-
-
DataMelt 3.0 © DataMelt by jWork.ORG