You are here: Start » FIL.NET » Function Reference » Image » Image Color Spaces » FIL.SplitBayerImage
Creates several monochromatic images from individual pixels of the input Bayer pattern image.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
C++
C#
public static void SplitBayerImage ( FilNet.Image inBayerImage, FilNet.Image outImage1, FilNet.Image outImage2, FilNet.Image outImage3, FilNet.Image outImage4 )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inBayerImage | FilNet.Image | |||
![]() | outImage1 | FilNet.Image | First output image. | ||
![]() | outImage2 | FilNet.Image | Second output image. | ||
![]() | outImage3 | FilNet.Image | Third output image. | ||
![]() | outImage4 | FilNet.Image | Fourth output image. |
Hardware Acceleration
This operation supports automatic parallelization for multicore and multiprocessor systems.
Hardware acceleration settings may be manipulated with Settings class.
Errors
List of possible exceptions:
Error type | Description |
---|---|
DomainError | Input image must have even dimensions in SplitBayerImage. |
DomainError | Only one channel input image is allowed in SplitBayerImage. |
DomainError | Not supported inBayerImage pixel format in SplitBayerImage. Supported formats: 1xUInt8, 1xInt8, 1xUInt16, 1xInt16, 1xInt32, 1xReal. |