BOWImgDescriptorExtractorCompute Method |
http://www.emgu.com
Computes an image descriptor using the set visual vocabulary.
Namespace:
Emgu.CV.Features2D
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic void Compute(
IInputArray image,
VectorOfKeyPoint keypoints,
Mat imgDescriptors
)
Public Sub Compute (
image As IInputArray,
keypoints As VectorOfKeyPoint,
imgDescriptors As Mat
)
public:
void Compute(
IInputArray^ image,
VectorOfKeyPoint^ keypoints,
Mat^ imgDescriptors
)
member Compute :
image : IInputArray *
keypoints : VectorOfKeyPoint *
imgDescriptors : Mat -> unit
Parameters
- image
- Type: Emgu.CVIInputArray
Image, for which the descriptor is computed - keypoints
- Type: Emgu.CV.UtilVectorOfKeyPoint
Key points detected in the input image. - imgDescriptors
- Type: Emgu.CVMat
The output image descriptors.
See Also