DescriptorMatcherMatch Method (IInputArray, IInputArray, VectorOfDMatch, IInputArray) |
http://www.emgu.com
Finds the best match for each descriptor from a query set (blocking version).
Namespace:
Emgu.CV.Cuda
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic void Match(
IInputArray queryDescriptors,
IInputArray trainDescriptors,
VectorOfDMatch matches,
IInputArray mask = null
)
Public Sub Match (
queryDescriptors As IInputArray,
trainDescriptors As IInputArray,
matches As VectorOfDMatch,
Optional mask As IInputArray = Nothing
)
public:
void Match(
IInputArray^ queryDescriptors,
IInputArray^ trainDescriptors,
VectorOfDMatch^ matches,
IInputArray^ mask = nullptr
)
member Match :
queryDescriptors : IInputArray *
trainDescriptors : IInputArray *
matches : VectorOfDMatch *
?mask : IInputArray
(* Defaults:
let _mask = defaultArg mask null
*)
-> unit
Parameters
- queryDescriptors
- Type: Emgu.CVIInputArray
Query set of descriptors. - trainDescriptors
- Type: Emgu.CVIInputArray
Train set of descriptors. This set is not added to the train descriptors collection stored in the class object. - matches
- Type: Emgu.CV.UtilVectorOfDMatch
Matches. 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. - mask (Optional)
- Type: Emgu.CVIInputArray
Mask specifying permissible matches between an input query and train matrices of descriptors.
See Also