Click or drag to resize

DescriptorMatcherRadiusMatchConvert 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 RadiusMatchConvert(
	IInputArray gpuMatches,
	VectorOfVectorOfDMatch matches,
	bool compactResult
)

Parameters

gpuMatches
Type: Emgu.CVIInputArray
Matches, returned from DescriptorMatcher.RadiusMatchAsync.
matches
Type: Emgu.CV.UtilVectorOfVectorOfDMatch
Vector of DMatch objects.
compactResult
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