C# Класс AForge.Imaging.Filters.Mirror

Mirroring filter.

The filter mirrors image around X and/or Y axis (horizontal and vertical mirroring).

The filter accepts 8 bpp grayscale images and 24 bpp color images for processing.

Sample usage:

// create filter Mirror filter = new Mirror( false, true ); // apply the filter filter.ApplyInPlace( image );

Initial image:

Result image:

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

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

Метод Описание
Mirror ( bool mirrorX, bool mirrorY ) : System

Initializes a new instance of the Mirror class.

Защищенные методы

Метод Описание
ProcessFilter ( UnmanagedImage image, Rectangle rect ) : void

Process the filter on the specified image.

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

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

Initializes a new instance of the Mirror class.
public Mirror ( bool mirrorX, bool mirrorY ) : System
mirrorX bool Specifies if mirroring should be done for X axis.
mirrorY bool Specifies if mirroring should be done for Y axis
Результат System

ProcessFilter() защищенный Метод

Process the filter on the specified image.
protected ProcessFilter ( UnmanagedImage image, Rectangle rect ) : void
image UnmanagedImage Source image data.
rect System.Drawing.Rectangle Image rectangle for processing by the filter.
Результат void