CudaSURFDetectKeyPoints Method |
http://www.emgu.com
Detect keypoints in the CudaImage
Namespace: Emgu.CV.XFeatures2DAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.1.0.2282 (3.1.0.2282)
Syntaxpublic MKeyPoint[] DetectKeyPoints(
GpuMat img,
GpuMat mask
)
Public Function DetectKeyPoints (
img As GpuMat,
mask As GpuMat
) As MKeyPoint()
public:
array<MKeyPoint>^ DetectKeyPoints(
GpuMat^ img,
GpuMat^ mask
)
member DetectKeyPoints :
img : GpuMat *
mask : GpuMat -> MKeyPoint[]
Parameters
- img
- Type: Emgu.CV.CudaGpuMat
The image where keypoints will be detected from - mask
- Type: Emgu.CV.CudaGpuMat
The optional mask, can be null if not needed
Return Value
Type:
MKeyPointAn array of keypoints
See Also