Synthetize¶
This is the Synthetize application
Description¶
- Concatenate a list of images of the same size into a single single-channel image.
- It keeps the first non-null pixel value found in the input list.
Parameters¶
Input images list -il string1 string2...
Mandatory
Input image list
Output Image -out image [dtype]
Mandatory
Output image.
Available RAM (MB) -ram int
Default value: 256
Available memory for processing (in MB).
Examples¶
From the command-line:
otbcli_Synthetize -il s1a_33NWB_vv_DES_007_20200108t044150.tif s1a_33NWB_vv_DES_007_20200108t044215.tif -out s1a_33NWB_vv_DES_007_20200108txxxxxx.tif
From Python:
import otbApplication
app = otbApplication.Registry.CreateApplication("Synthetize")
app.SetParameterStringList("il", ['s1a_33NWB_vv_DES_007_20200108t044150.tif', 's1a_33NWB_vv_DES_007_20200108t044215.tif'])
app.SetParameterString("out", "s1a_33NWB_vv_DES_007_20200108txxxxxx.tif")
app.ExecuteAndWriteOutput()
Limitations¶
This application will break incoming pipelines.