Retrieve the star keypoint location from the specific image

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.2.0.809 (2.2.0.809)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static IntPtr cvGetStarKeypoints(
	IntPtr img,
	IntPtr storage,
	StarDetector param
)
Public Shared Function cvGetStarKeypoints ( _
	img As IntPtr, _
	storage As IntPtr, _
	param As StarDetector _
) As IntPtr
public:
static IntPtr cvGetStarKeypoints(
	IntPtr img, 
	IntPtr storage, 
	StarDetector param
)

Parameters

img
IntPtr
The image to detect start keypoints
storage
IntPtr
The storage for the returned sequence
param
StarDetector
The star detector parameters

Return Value

Pointer to the sequence of star keypoint locations

See Also