ColorizeImage
Shows a monochromatic image in false colors.
Syntax
C++
Python
def ColorizeImage( state: ColorizeImageState, inImage: Image, inPalette: ColorPalette, inNegate: bool, outImage: Image, /, *, inRoi: Region | None = None, inMinValue: int | None = 0, inMaxValue: int | None = 255, diagPalette: Image | None = None ) -> None
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
ioState | ColorizeImageState | ||
![]() |
inImage | Image | Input image | |
![]() |
inRoi | Region | None | None | Range of pixels to be processed |
![]() |
inPalette | ColorPalette | Palette of colors which is used to replace pixels | |
![]() |
inNegate | bool | Reversing palette colors | |
![]() |
inMinValue | int | None | 0 | Minimal value of pixel that will be replaced by color from palette, otherwise first color from palette will be set |
![]() |
inMaxValue | int | None | 255 | Maximal value of pixel that will be replaced by color from palette, otherwise last color from palette will be set |
![]() |
outImage | Image | Output image | |
![]() |
diagPalette | Image | None | None | Used palette preview |
Hardware Acceleration
This operation supports automatic parallelization for multicore and multiprocessor systems.




