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)
Syntaxpublic void KnnMatchConvert(
IInputArray gpuMatches,
VectorOfVectorOfDMatch matches,
bool compactResult = false
)
Public Sub KnnMatchConvert (
gpuMatches As IInputArray,
matches As VectorOfVectorOfDMatch,
Optional compactResult As Boolean = false
)
public:
void KnnMatchConvert(
IInputArray^ gpuMatches,
VectorOfVectorOfDMatch^ matches,
bool compactResult = false
)
member KnnMatchConvert :
gpuMatches : IInputArray *
matches : VectorOfVectorOfDMatch *
?compactResult : bool
(* Defaults:
let _compactResult = defaultArg compactResult false
*)
-> unit
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