http://www.emgu.com
Detect the keypoints from the image
Namespace:
Emgu.CV.Features2D
Assembly:
Emgu.CV.World.NetStandard (in Emgu.CV.World.NetStandard.dll) Version: 1.0.0
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