Feature2DAsyncExtensionConvert Method |
http://www.emgu.com
Converts keypoints array from internal representation to standard vector.
Namespace: Emgu.CV.CudaAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.2.0.2682 (3.2.0.2682)
Syntaxpublic static void Convert(
this IFeature2DAsync feature2DAsync,
IInputArray gpuKeypoints,
VectorOfKeyPoint keypoints
)
<ExtensionAttribute>
Public Shared Sub Convert (
feature2DAsync As IFeature2DAsync,
gpuKeypoints As IInputArray,
keypoints As VectorOfKeyPoint
)
public:
[ExtensionAttribute]
static void Convert(
IFeature2DAsync^ feature2DAsync,
IInputArray^ gpuKeypoints,
VectorOfKeyPoint^ keypoints
)
[<ExtensionAttribute>]
static member Convert :
feature2DAsync : IFeature2DAsync *
gpuKeypoints : IInputArray *
keypoints : VectorOfKeyPoint -> unit
Parameters
- feature2DAsync
- Type: Emgu.CV.CudaIFeature2DAsync
The Feature2DAsync object - gpuKeypoints
- Type: Emgu.CVIInputArray
GpuMat representation of the keypoints. - keypoints
- Type: Emgu.CV.UtilVectorOfKeyPoint
Vector of keypoints
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IFeature2DAsync. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also