http://www.emgu.com
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Compute the descriptor given the image and the point location
Namespace: Emgu.CV.Features2DAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public Matrix<float> ComputeDescriptorsRaw( Image<Gray, byte> image, Image<Gray, byte> mask, VectorOfKeyPoint keyPoints ) |
Visual Basic |
---|
Public Function ComputeDescriptorsRaw ( _ image As Image(Of Gray, Byte), _ mask As Image(Of Gray, Byte), _ keyPoints As VectorOfKeyPoint _ ) As Matrix(Of Single) |
Visual C++ |
---|
public: virtual Matrix<float>^ ComputeDescriptorsRaw( Image<Gray, unsigned char>^ image, Image<Gray, unsigned char>^ mask, VectorOfKeyPoint^ keyPoints ) sealed |
Parameters
- image
- Type: Emgu.CV..::..Image<(Of <(<'Gray, Byte>)>)>
The image where the descriptor will be computed from
- mask
- Type: Emgu.CV..::..Image<(Of <(<'Gray, Byte>)>)>
The optional mask, can be null if not needed
- keyPoints
- Type: Emgu.CV.Util..::..VectorOfKeyPoint
The keypoint where the descriptor will be computed from. Keypoints for which a descriptor cannot be computed are removed.