Package boofcv.abst.feature.associate
Class ScoreAssociateHamming_B
java.lang.Object
boofcv.abst.feature.associate.ScoreAssociateHamming_B
- All Implemented Interfaces:
ScoreAssociation<TupleDesc_B>
Score association between two BRIEF features. Scoring is done using the Hamming distance.
Hamming distance is the number of bits in the descriptor which do not have the same value.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionThe type of description it can scoreSpecifies the type of score which is returned.doublescore(TupleDesc_B a, TupleDesc_B b) Compute the fit score between the two features.
-
Constructor Details
-
ScoreAssociateHamming_B
public ScoreAssociateHamming_B()
-
-
Method Details
-
score
Description copied from interface:ScoreAssociationCompute the fit score between the two features. A better fit score will have a lower value.- Specified by:
scorein interfaceScoreAssociation<TupleDesc_B>- Parameters:
a- first featureb- second feature- Returns:
- Quality of fit score. Lower is better.
-
getScoreType
Description copied from interface:ScoreAssociationSpecifies the type of score which is returned.- Specified by:
getScoreTypein interfaceScoreAssociation<TupleDesc_B>- Returns:
- Type of association score.
-
getDescriptorType
Description copied from interface:ScoreAssociationThe type of description it can score- Specified by:
getDescriptorTypein interfaceScoreAssociation<TupleDesc_B>
-