C# 클래스 Accord.Imaging.FastCornersDetector

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

공개 메소드들

메소드 설명
Clone ( ) : object

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

FastCornersDetector ( ) : System

Initializes a new instance of the FastCornersDetector class.

FastCornersDetector ( int threshold ) : System

Initializes a new instance of the FastCornersDetector class.

ProcessImage ( Bitmap image ) : List

Process image looking for corners.

ProcessImage ( BitmapData imageData ) : List

Process image looking for corners.

ProcessImage ( UnmanagedImage image ) : List

Process image looking for corners.

비공개 메소드들

메소드 설명
detect ( UnmanagedImage image, int offsets ) : AForge.IntPoint[]
makeOffsets ( int stride ) : int[]
maximum ( IntPoint corners, int scores ) : int[]
score ( UnmanagedImage image, IntPoint corner, int offsets ) : int

메소드 상세

Clone() 공개 메소드

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

FastCornersDetector() 공개 메소드

Initializes a new instance of the FastCornersDetector class.
public FastCornersDetector ( ) : System
리턴 System

FastCornersDetector() 공개 메소드

Initializes a new instance of the FastCornersDetector class.
public FastCornersDetector ( int threshold ) : System
threshold int The suppression threshold. Decreasing this value /// increases the number of points detected by the algorithm. Default is 20.
리턴 System

ProcessImage() 공개 메소드

Process image looking for corners.
/// The source image has incorrect pixel format. ///
public ProcessImage ( Bitmap image ) : List
image System.Drawing.Bitmap Source image data to process.
리턴 List

ProcessImage() 공개 메소드

Process image looking for corners.
/// The source image has incorrect pixel format. ///
public ProcessImage ( BitmapData imageData ) : List
imageData System.Drawing.Imaging.BitmapData Source image data to process.
리턴 List

ProcessImage() 공개 메소드

Process image looking for corners.
/// The source image has incorrect pixel format. ///
public ProcessImage ( UnmanagedImage image ) : List
image UnmanagedImage Source image data to process.
리턴 List