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

DetectKeyPointsRaw() public méthode

Detect the Lepetit keypoints from the image
public DetectKeyPointsRaw ( Byte>.Image image, int maxCount, bool scaleCoords ) : VectorOfKeyPoint
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.Util.VectorOfKeyPoint
        public VectorOfKeyPoint DetectKeyPointsRaw(Image<Gray, Byte> image, int maxCount, bool scaleCoords)
        {
            VectorOfKeyPoint kpts = new VectorOfKeyPoint();
             CvInvoke.CvLDetectorDetectKeyPoints(ref this, image, kpts, maxCount, scaleCoords);
             return kpts;
        }

Same methods

LDetector::DetectKeyPointsRaw ( byte>.Image image ) : VectorOfKeyPoint