The Bayer to Y800 filter reinterprets the raw color data in BY8 images as Y800. Using this filter, it is possible to display the raw color data. The BY8 image data is de-bayered automatically before the video stream is rendered on screen.
The Bayer to Y800 filter is loaded by an application using following code:
[C#]
FrameFilter BY8toY800Filter; BY8toY800Filter = ICImagingControl1.FrameFilterCreate("Bayer to Y800", ""); if( BY8toY800Filter == null ) MessageBox.Show("Failed to create BY8toY800Filter"); else ICImagingControl1.DeviceFrameFilters.Add(BY8toY800Filter);
The Bayer to Y800 filter does not have any parameters.
The Bayer to Y800 filter does not have a property dialog.