C# 클래스 Accord.Imaging.FastRetinaKeypointDescriptor

Fast Retina Keypoint (FREAK) descriptor.

Based on original implementation by A. Alahi, R. Ortiz, and P. Vandergheynst, distributed under a BSD style license.

In order to extract feature points from an image using FREAK, please take a look on the FastRetinaKeypointDetector documentation page.

References: A. Alahi, R. Ortiz, and P. Vandergheynst. FREAK: Fast Retina Keypoint. In IEEE Conference on Computer Vision and Pattern Recognition, CVPR 2012 Open Source Award Winner.

상속: ICloneable
파일 보기 프로젝트 열기: accord-net/framework 1 사용 예제들

공개 메소드들

메소드 설명
Clone ( ) : object

Creates a new object that is a copy of the current instance.

Compute ( IList points ) : void

Describes the specified point (i.e. computes and sets the orientation and descriptor vector fields of the FastRetinaKeypoint.

비공개 메소드들

메소드 설명
FastRetinaKeypointDescriptor ( ) : Accord.Math
FastRetinaKeypointDescriptor ( UnmanagedImage image, IntegralImage integral, FastRetinaKeypointPattern pattern ) : Accord.Math

Initializes a new instance of the FastRetinaKeypointDescriptor class.

mean ( double kx, double ky, int scale, int orientation, int pointIndex ) : int

메소드 상세

Clone() 공개 메소드

Creates a new object that is a copy of the current instance.
public Clone ( ) : object
리턴 object

Compute() 공개 메소드

Describes the specified point (i.e. computes and sets the orientation and descriptor vector fields of the FastRetinaKeypoint.
public Compute ( IList points ) : void
points IList The point to be described.
리턴 void