Click or drag to resize

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)
Syntax
public void Match(
	IInputArray queryDescriptors,
	IInputArray trainDescriptors,
	VectorOfDMatch matches,
	IInputArray mask = null
)

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