Emgu.CV.Features2D.LDetector.DetectKeyPoints C# (CSharp) Méthode

DetectKeyPoints() public méthode

Detect the Lepetit keypoints from the image
public DetectKeyPoints ( Byte>.Image image, int maxCount, bool scaleCoords ) : Emgu.CV.Structure.MKeyPoint[]
image Byte>.Image The image to extract Lepetit keypoints
maxCount int The maximum number of keypoints to be extracted, use 0 to ignore the max count
scaleCoords bool Indicates if the coordinates should be scaled
Résultat Emgu.CV.Structure.MKeyPoint[]
        public MKeyPoint[] DetectKeyPoints(Image<Gray, Byte> image, int maxCount, bool scaleCoords)
        {
            using (VectorOfKeyPoint kpts = DetectKeyPointsRaw(image, maxCount, scaleCoords))
             {
            return kpts.ToArray();
             }
        }