http://www.emgu.com
Compute the descriptors on the image from the given keypoint locations.
Namespace: Emgu.CV.Features2DAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic void Compute(
IInputArray image,
VectorOfKeyPoint keyPoints,
IOutputArray descriptors
)
Public Sub Compute (
image As IInputArray,
keyPoints As VectorOfKeyPoint,
descriptors As IOutputArray
)
public:
void Compute(
IInputArray^ image,
VectorOfKeyPoint^ keyPoints,
IOutputArray^ descriptors
)
member Compute :
image : IInputArray *
keyPoints : VectorOfKeyPoint *
descriptors : IOutputArray -> unit
Parameters
- image
- Type: Emgu.CVIInputArray
The image to compute descriptors from - keyPoints
- Type: Emgu.CV.UtilVectorOfKeyPoint
The keypoints where the descriptor computation is perfromed - descriptors
- Type: Emgu.CVIOutputArray
The descriptors from the given keypoints
See Also