C# Класс ImageProcessor.Imaging.Filters.EdgeDetection.ConvolutionFilter

The convolution filter for applying gradient operators to detect edges within an image.
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
ConvolutionFilter ( IEdgeFilter edgeFilter, bool greyscale ) : System

Initializes a new instance of the ConvolutionFilter class.

Process2DFilter ( Image source ) : Bitmap

Processes the given bitmap to apply the current instance of I2DEdgeFilter.

ProcessFilter ( Image source ) : Bitmap

Processes the given bitmap to apply the current instance of IEdgeFilter.

Описание методов

ConvolutionFilter() публичный Метод

Initializes a new instance of the ConvolutionFilter class.
public ConvolutionFilter ( IEdgeFilter edgeFilter, bool greyscale ) : System
edgeFilter IEdgeFilter /// The to apply. ///
greyscale bool /// Whether to produce a greyscale output. ///
Результат System

Process2DFilter() публичный Метод

Processes the given bitmap to apply the current instance of I2DEdgeFilter.
public Process2DFilter ( Image source ) : Bitmap
source Image The image to process.
Результат System.Drawing.Bitmap

ProcessFilter() публичный Метод

Processes the given bitmap to apply the current instance of IEdgeFilter.
public ProcessFilter ( Image source ) : Bitmap
source Image The image to process.
Результат System.Drawing.Bitmap