C# Class Accord.Imaging.FastCornersDetector

Inheritance: ICornersDetector
Mostrar archivo Open project: accord-net/framework Class Usage Examples

Public Methods

Method Description
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.

Private Methods

Method Description
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

Method Details

Clone() public method

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

FastCornersDetector() public method

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

FastCornersDetector() public method

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.
return System

ProcessImage() public method

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.
return List

ProcessImage() public method

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.
return List

ProcessImage() public method

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