Extracts Speeded Up Robust Features from image
Namespace: OpenCvSharp
Assembly: OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static void ExtractSURF( CvArr image, CvArr mask, out CvSeq<CvSURFPoint> keypoints, out CvSeq<IntPtr> descriptors, CvMemStorage storage, CvSURFParams param )
Parameters
- image
- Type: OpenCvSharpCvArr
The input 8-bit grayscale image. - mask
- Type: OpenCvSharpCvArr
The optional input 8-bit mask. The features are only found in the areas that contain more than 50% of non-zero mask pixels. - keypoints
- Type: OpenCvSharpCvSeqCvSURFPoint
The output parameter; double pointer to the sequence of keypoints. This will be the sequence of CvSURFPoint structures. - descriptors
- Type: OpenCvSharpCvSeqIntPtr
The optional output parameter; double pointer to the sequence of descriptors; Depending on the params.extended value, each element of the sequence will be either 64-element or 128-element floating-point (CV_32F) vector. If the parameter is null, the descriptors are not computed. - storage
- Type: OpenCvSharpCvMemStorage
Memory storage where keypoints and descriptors will be stored. - param
- Type: OpenCvSharpCvSURFParams
Various algorithm parameters put to the structure CvSURFParams
See Also