C# Class Accord.Imaging.FastCornersDetector

Inheritance: ICornersDetector
Afficher le fichier Open project: accord-net/framework Class Usage Examples

Méthodes publiques

Méthode 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

Méthode 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 méthode

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

FastCornersDetector() public méthode

Initializes a new instance of the FastCornersDetector class.
public FastCornersDetector ( ) : System
Résultat System

FastCornersDetector() public méthode

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.
Résultat System

ProcessImage() public méthode

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.
Résultat List

ProcessImage() public méthode

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.
Résultat List

ProcessImage() public méthode

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