Package boofcv.abst.feature.associate
Class ScoreAssociateEuclidean_F64
java.lang.Object
boofcv.abst.feature.associate.ScoreAssociateEuclidean_F64
- All Implemented Interfaces:
ScoreAssociation<TupleDesc_F64>
public class ScoreAssociateEuclidean_F64 extends Object implements ScoreAssociation<TupleDesc_F64>
Scores based on Euclidean distance
-
Constructor Summary
Constructors Constructor Description ScoreAssociateEuclidean_F64()
-
Method Summary
Modifier and Type Method Description Class<TupleDesc_F64>
getDescriptorType()
The type of description it can scoreMatchScoreType
getScoreType()
Specifies the type of score which is returned.double
score(TupleDesc_F64 a, TupleDesc_F64 b)
Compute the fit score between the two features.
-
Constructor Details
-
ScoreAssociateEuclidean_F64
public ScoreAssociateEuclidean_F64()
-
-
Method Details
-
score
Description copied from interface:ScoreAssociation
Compute the fit score between the two features. A better fit score will have a lower value.- Specified by:
score
in interfaceScoreAssociation<TupleDesc_F64>
- Parameters:
a
- first featureb
- second feature- Returns:
- Quality of fit score. Lower is better.
-
getScoreType
Description copied from interface:ScoreAssociation
Specifies the type of score which is returned.- Specified by:
getScoreType
in interfaceScoreAssociation<TupleDesc_F64>
- Returns:
- Type of association score.
-
getDescriptorType
Description copied from interface:ScoreAssociation
The type of description it can score- Specified by:
getDescriptorType
in interfaceScoreAssociation<TupleDesc_F64>
-