Click or drag to resize

DescriptorMatcherKnnMatchConvert Method

http://www.emgu.com
Converts matches array from internal representation to standard matches vector.

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 KnnMatchConvert(
	IInputArray gpuMatches,
	VectorOfVectorOfDMatch matches,
	bool compactResult = false
)

Parameters

gpuMatches
Type: Emgu.CVIInputArray
Matches
matches
Type: Emgu.CV.UtilVectorOfVectorOfDMatch
Vector of DMatch objects.
compactResult (Optional)
Type: SystemBoolean
Parameter used when the mask (or masks) is not empty. If compactResult is false, the matches vector has the same size as queryDescriptors rows. If compactResult is true, the matches vector does not contain matches for fully masked-out query descriptors.
See Also