C# 클래스 Accord.Imaging.Filters.BayerFilter

Generic 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 Bayer filter implementation is made generic by allowing user to specify used Bayer pattern. This makes it slower. For optimized version of the Bayer filter see BayerFilterOptimized class, which implements Bayer filter specifically optimized for some well known patterns.

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 );

Source image:

Result image:

상속: BaseFilter
파일 보기 프로젝트 열기: accord-net/framework

공개 메소드들

메소드 설명
BayerFilter ( ) : System

Initializes a new instance of the BayerFilter class.

보호된 메소드들

메소드 설명
ProcessFilter ( UnmanagedImage sourceData, UnmanagedImage destinationData ) : void

Process the filter on the specified image.

메소드 상세

BayerFilter() 공개 메소드

Initializes a new instance of the BayerFilter class.
public BayerFilter ( ) : 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