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

Optimized Bayer fileter image processing routine.

The class implements Bayer filter routine, which creates color image out of grayscale image produced by image sensor built with Bayer color matrix.

This class does all the same as BayerFilter class. However this version is optimized for some well known patterns defined in BayerPattern enumeration. Also this class processes images with even width and height only. Image size must be at least 2x2 pixels.

The filter accepts 8 bpp grayscale images and produces 24 bpp RGB image.

Sample usage:

// create filter BayerFilter filter = new BayerFilter( ); // apply the filter Bitmap rgbImage = filter.Apply( image );
Наследование: BaseFilter
Показать файл Открыть проект

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

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

Initializes a new instance of the BayerFilterOptimized class.

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

Метод Описание
ProcessFilter ( UnmanagedImage sourceData, UnmanagedImage destinationData ) : void

Process the filter on the specified image.

Приватные методы

Метод Описание
ApplyBGGR ( UnmanagedImage sourceData, UnmanagedImage destinationData ) : void
ApplyGRBG ( UnmanagedImage sourceData, UnmanagedImage destinationData ) : void

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

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

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

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

Process the filter on the specified image.
protected ProcessFilter ( UnmanagedImage sourceData, UnmanagedImage destinationData ) : void
sourceData UnmanagedImage Source image data.
destinationData UnmanagedImage Destination image data.
Результат void