DescriptorMatcherMatch Method (IInputArray, VectorOfDMatch, IInputArrayOfArrays) |
http://www.emgu.com
Finds the best match for each descriptor from a query set. Train descriptors collection that was set by the Add function is used.
Namespace:
Emgu.CV.Features2D
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic void Match(
IInputArray queryDescriptors,
VectorOfDMatch matches,
IInputArrayOfArrays masks = null
)
Public Sub Match (
queryDescriptors As IInputArray,
matches As VectorOfDMatch,
Optional masks As IInputArrayOfArrays = Nothing
)
public:
void Match(
IInputArray^ queryDescriptors,
VectorOfDMatch^ matches,
IInputArrayOfArrays^ masks = nullptr
)
member Match :
queryDescriptors : IInputArray *
matches : VectorOfDMatch *
?masks : IInputArrayOfArrays
(* Defaults:
let _masks = defaultArg masks null
*)
-> unit
Parameters
- queryDescriptors
- Type: Emgu.CVIInputArray
Query set of descriptors. - matches
- Type: Emgu.CV.UtilVectorOfDMatch
If a query descriptor is masked out in mask , no match is added for this descriptor. So, matches size may be smaller than the query descriptors count. - masks (Optional)
- Type: Emgu.CVIInputArrayOfArrays
Mask specifying permissible matches between an input query and train matrices of descriptors.
See Also