Feature2DDetectRaw Method |
http://www.emgu.com
Detect the features in the image
Namespace: Emgu.CV.Features2DAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic void DetectRaw(
IInputArray image,
VectorOfKeyPoint keypoints,
IInputArray mask = null
)
Public Sub DetectRaw (
image As IInputArray,
keypoints As VectorOfKeyPoint,
Optional mask As IInputArray = Nothing
)
public:
void DetectRaw(
IInputArray^ image,
VectorOfKeyPoint^ keypoints,
IInputArray^ mask = nullptr
)
member DetectRaw :
image : IInputArray *
keypoints : VectorOfKeyPoint *
?mask : IInputArray
(* Defaults:
let _mask = defaultArg mask null
*)
-> unit
Parameters
- image
- Type: Emgu.CVIInputArray
The image from which the features will be detected from - keypoints
- Type: Emgu.CV.UtilVectorOfKeyPoint
The result vector of keypoints - mask (Optional)
- Type: Emgu.CVIInputArray
The optional mask.
See Also