ComposeImages
Takes pixels from the first image within the specified region and from the other one elsewhere.
Syntax
C++
Python
def ComposeImages( inImage1: Image, inImage2: Image, inRegion: Region, outImage: Image, /, *, inRoi: Region | None = None ) -> None
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inImage1 | Image | First source of pixels marked in inRegion | |
![]() |
inImage2 | Image | Background image | |
![]() |
inRegion | Region | Region which describes which pixels should be taken from inImage1 | |
![]() |
inRoi | Region | None | None | Region in which pixels should be processed otherwise black pixels are placed |
![]() |
outImage | Image | Image composed of tho input images |


