| Interface | Description |
|---|---|
| Associate |
Common interface for associating features between two images.
|
| AssociateDescription<Desc> |
Generalized interface for associating features.
|
| AssociateDescription2D<Desc> |
Associates features from two images together using both 2D location and descriptor information.
|
| ScoreAssociation<Desc> |
Scores the fit quality between two feature descriptions.
|
| Class | Description |
|---|---|
| AssociateDescTo2D<D> |
Wrapper around
AssociateDescription that allows it to be used inside of AssociateDescription2D |
| AssociateNearestNeighbor<D extends TupleDesc_F64> |
Matches features using a
NearestNeighbor search from DDogleg. |
| EnforceUniqueByScore<A extends Associate> |
Ensures that the source and/or destination features are uniquely associated by resolving ambiguity using
association score and preferring matches with better scores.
|
| EnforceUniqueByScore.Describe<Desc> |
Implementation of
EnforceUniqueByScore for AssociateDescription. |
| EnforceUniqueByScore.Describe2D<Desc> |
Implementation of
EnforceUniqueByScore for AssociateDescription2D. |
| ScoreAssociateCorrelation |
Scores two possible associations using
DescriptorDistance.correlation(boofcv.struct.feature.TupleDesc_F64, boofcv.struct.feature.TupleDesc_F64). |
| ScoreAssociateEuclidean_F64 |
Scores based on Euclidean distance
|
| ScoreAssociateEuclideanSq_F32 |
Scores based on Euclidean distance squared
|
| ScoreAssociateEuclideanSq_F64 |
Scores based on Euclidean distance squared
|
| ScoreAssociateHamming_B |
Score association between two BRIEF features.
|
| ScoreAssociateNccFeature |
Association scorer for NccFeatures.
|
| ScoreAssociateSad_F32 |
Computes sum of absolute difference (SAD) score for
TupleDesc_F32. |
| ScoreAssociateSad_F64 |
Computes sum of absolute difference (SAD) score for
TupleDesc_F64. |
| ScoreAssociateSad_S8 |
Computes sum of absolute difference (SAD) score for
TupleDesc_U8. |
| ScoreAssociateSad_U8 |
Computes sum of absolute difference (SAD) score for
TupleDesc_U8. |
| WrapAssociateGreedy<T> |
Wrapper around algorithms contained inside of
AssociateGreedy. |
| WrapAssociateSurfBasic |
Wrapper around
AssociateSurfBasic for AssociateDescription. |