| BOWImgDescriptorExtractorCompute2 Method |
Computes an image descriptor using the set visual vocabulary.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public void Compute2(
Mat image,
ref KeyPoint[] keypoints,
Mat imgDescriptor
)
Public Sub Compute2 (
image As Mat,
ByRef keypoints As KeyPoint(),
imgDescriptor As Mat
)
public:
void Compute2(
Mat^ image,
array<KeyPoint>^% keypoints,
Mat^ imgDescriptor
)
member Compute2 :
image : Mat *
keypoints : KeyPoint[] byref *
imgDescriptor : Mat -> unit
Parameters
- image
- Type: OpenCvSharpMat
Image, for which the descriptor is computed. - keypoints
- Type: OpenCvSharpKeyPoint
Keypoints detected in the input image. - imgDescriptor
- Type: OpenCvSharpMat
Computed output image descriptor.
See Also