DescriptorMatcherMatchAsync Method (IInputArray, IInputArray, IOutputArray, IInputArray, Stream) |
http://www.emgu.com
Finds the best match for each descriptor from a query set (asynchronous version).
Namespace:
Emgu.CV.Cuda
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic void MatchAsync(
IInputArray queryDescriptors,
IInputArray trainDescriptors,
IOutputArray matches,
IInputArray mask = null,
Stream stream = null
)
Public Sub MatchAsync (
queryDescriptors As IInputArray,
trainDescriptors As IInputArray,
matches As IOutputArray,
Optional mask As IInputArray = Nothing,
Optional stream As Stream = Nothing
)
public:
void MatchAsync(
IInputArray^ queryDescriptors,
IInputArray^ trainDescriptors,
IOutputArray^ matches,
IInputArray^ mask = nullptr,
Stream^ stream = nullptr
)
member MatchAsync :
queryDescriptors : IInputArray *
trainDescriptors : IInputArray *
matches : IOutputArray *
?mask : IInputArray *
?stream : Stream
(* Defaults:
let _mask = defaultArg mask null
let _stream = defaultArg stream null
*)
-> unit
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.CVIOutputArray
Matches array stored in GPU memory. Internal representation is not defined. Use DescriptorMatcher::matchConvert method to retrieve results in standard representation. - mask (Optional)
- Type: Emgu.CVIInputArray
Mask specifying permissible matches between an input query and train matrices of descriptors. - stream (Optional)
- Type: Emgu.CV.CudaStream
CUDA stream.
See Also