BayerToRgb


Converts a Bayer-encoded color image into RGB color space.

Applications:Use this filter only if the conversion functionality is not provided by the camera (check appropriate pixel types).

Syntax

C++
C#
Python
 
def BayerToRgb(
	inMonoImage: Image,
	inDebayeringMethod: DebayeringMethod,
	inBayerType: BayerType,
	outRgbImage: Image,
	/
)
-> None

Parameters

Name Type Default Description
Input value inMonoImage Image
Input value inDebayeringMethod DebayeringMethod
Input value inBayerType BayerType
Output value outRgbImage Image

Hardware Acceleration

This operation supports automatic parallelization for multicore and multiprocessor systems.

This operation is optimized for SSSE3 technology for pixels of types: UINT8(for inDebayeringMethod=Bilinear).

This operation is optimized for NEON technology for pixels of types: UINT8(for inDebayeringMethod=Bilinear).