C# Класс Accord.Imaging.FastCornersDetector

Наследование: ICornersDetector
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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