Beispiel #1
0
        public Mat ComputeDescriptor(KeyPointModel keyPoints)
        {
            Mat result = new Mat();
            Mat image  = new Mat(keyPoints.InputFile.fileInfo.FullName);

            _fast.Compute(image, keyPoints.DetectedKeyPoints, result);
            return(result);
        }