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)
Syntaxpublic void RadiusMatchConvert(
IInputArray gpuMatches,
VectorOfVectorOfDMatch matches,
bool compactResult
)
Public Sub RadiusMatchConvert (
gpuMatches As IInputArray,
matches As VectorOfVectorOfDMatch,
compactResult As Boolean
)
public:
void RadiusMatchConvert(
IInputArray^ gpuMatches,
VectorOfVectorOfDMatch^ matches,
bool compactResult
)
member RadiusMatchConvert :
gpuMatches : IInputArray *
matches : VectorOfVectorOfDMatch *
compactResult : bool -> unit
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