http://www.emgu.com
Detect the keypoints from 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 MKeyPoint[] Detect(
IInputArray image,
IInputArray mask = null
)
Public Function Detect (
image As IInputArray,
Optional mask As IInputArray = Nothing
) As MKeyPoint()
public:
array<MKeyPoint>^ Detect(
IInputArray^ image,
IInputArray^ mask = nullptr
)
member Detect :
image : IInputArray *
?mask : IInputArray
(* Defaults:
let _mask = defaultArg mask null
*)
-> MKeyPoint[]
Parameters
- image
- Type: Emgu.CVIInputArray
The image to extract keypoints from - mask (Optional)
- Type: Emgu.CVIInputArray
The optional mask.
Return Value
Type:
MKeyPointAn array of key points
See Also