Features2DToolboxVoteForUniqueness Method |
http://www.emgu.com
Filter the matched Features, such that if a match is not unique, it is rejected.
Namespace:
Emgu.CV.Features2D
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic static void VoteForUniqueness(
VectorOfVectorOfDMatch matches,
double uniquenessThreshold,
Mat mask
)
Public Shared Sub VoteForUniqueness (
matches As VectorOfVectorOfDMatch,
uniquenessThreshold As Double,
mask As Mat
)
public:
static void VoteForUniqueness(
VectorOfVectorOfDMatch^ matches,
double uniquenessThreshold,
Mat^ mask
)
static member VoteForUniqueness :
matches : VectorOfVectorOfDMatch *
uniquenessThreshold : float *
mask : Mat -> unit
Parameters
- matches
- Type: Emgu.CV.UtilVectorOfVectorOfDMatch
Matches. Each matches[i] is k or less matches for the same query descriptor. - uniquenessThreshold
- Type: SystemDouble
The distance different ratio which a match is consider unique, a good number will be 0.8 - mask
- Type: Emgu.CVMat
This is both input and output. This matrix indicates which row is valid for the matches.
See Also