C# Класс Accord.Imaging.Filters.YCbCrLinear

Linear correction of YCbCr channels.

The filter operates in YCbCr color space and provides with the facility of linear correction of its channels - mapping specified channels' input ranges to specified output ranges.

The filter accepts 24 and 32 bpp color images for processing.

Sample usage:

// create filter YCbCrLinear filter = new YCbCrLinear( ); // configure the filter filter.InCb = new Range( -0.276f, 0.163f ); filter.InCr = new Range( -0.202f, 0.500f ); // apply the filter filter.ApplyInPlace( image );

Initial image:

Result image:

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

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

Метод Описание
YCbCrLinear ( ) : System

Initializes a new instance of the YCbCrLinear class.

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

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

Process the filter on the specified image.

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

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

YCbCrLinear() публичный метод

Initializes a new instance of the YCbCrLinear class.
public YCbCrLinear ( ) : System
Результат System