Feature2DDetectRaw Method |
http://www.emgu.com
Detect the features in the image
Namespace:
Emgu.CV.Features2D
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
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