SplitChannels
Creates several monochromatic images from individual channels of the input image.
Syntax
C++
Python
def SplitChannels( inImage: Image, /, *, outMonoImage1: Image | None = None, outMonoImage2: Image | None = None, outMonoImage3: Image | None = None, outMonoImage4: Image | None = None ) -> None
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inImage | Image | Input image | |
![]() |
outMonoImage1 | Image | None | None | Image of the first channel |
![]() |
outMonoImage2 | Image | None | None | Image of the second channel (if exists) |
![]() |
outMonoImage3 | Image | None | None | Image of the third channel (if exists) |
![]() |
outMonoImage4 | Image | None | None | Image of the fourth channel (if exists) |
Hardware Acceleration
This operation supports automatic parallelization for multicore and multiprocessor systems.


