http://www.emgu.com
Compute the descriptors on the image from the given keypoint locations.
Namespace:
Emgu.CV.Features2D
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
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