| Feature2DDetect Method (IEnumerableMat, IEnumerableMat) |
Detect keypoints in an image set.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public KeyPoint[][] Detect(
IEnumerable<Mat> images,
IEnumerable<Mat> masks = null
)
Public Function Detect (
images As IEnumerable(Of Mat),
Optional masks As IEnumerable(Of Mat) = Nothing
) As KeyPoint()()
public:
array<array<KeyPoint>^>^ Detect(
IEnumerable<Mat^>^ images,
IEnumerable<Mat^>^ masks = nullptr
)
member Detect :
images : IEnumerable<Mat> *
?masks : IEnumerable<Mat>
(* Defaults:
let _masks = defaultArg masks null
*)
-> KeyPoint[][]
Parameters
- images
- Type: System.Collections.GenericIEnumerableMat
Image collection. - masks (Optional)
- Type: System.Collections.GenericIEnumerableMat
Masks for image set. masks[i] is a mask for images[i].
Return Value
Type:
KeyPointCollection of keypoints detected in an input images. keypoints[i] is a set of keypoints detected in an images[i].
See Also