Retrieve the star keypoint location from the specific image

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

Syntax

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

Parameters

img
Type: System..::.IntPtr
The image to detect start keypoints
storage
Type: System..::.IntPtr
The storage for the returned sequence
param
Type: Emgu.CV..::.StarDetector
The star detector parameters

Return Value

Pointer to the sequence of star keypoint locations

See Also