SARAddBandInterferogram

Replace an amplitude for input interferogram.

Description

Replace an amplitude for input interferogram and merge it to rebuild three bands (amp, pha and coh).

Parameters

Input Interferogram with correct amplitude -ininterfamp image Mandatory
Input Interferogram with correct amplitude.

Input Compensated complex image -incomplexamp image Mandatory
Input Compensated complex image.

Input Interferogram -ininterf image Mandatory
Input Interferogram.

Averaging on distance for output interferogram -mlran int Default value: 1
Averaging on distance for output interferogram.

Averaging on azimut for output interferogram -mlazi int Default value: 1
Averaging on azimut for output interferogram.

Gain to apply on output amplitude -gain float Default value: 0.1
Gain to apply on output amplitude

Output interferogram (after filtering) -out image [dtype] Mandatory
Output Image : Interferogram after filtering with 3 corrected bands (amp, pha, coh).

Available RAM (MB) -ram int Default value: 256
Available memory for processing (in MB).

Examples

From the command-line:

otbcli_SARAddBandInterferogram -ininterfamp interferogram_amp.tiff -ininterf interferogram_phacoh.tiff -out outInterferogram.tiff

From Python:

import otbApplication

app = otbApplication.Registry.CreateApplication("SARAddBandInterferogram")

app.SetParameterString("ininterfamp", "interferogram_amp.tiff")
app.SetParameterString("ininterf", "interferogram_phacoh.tiff")
app.SetParameterString("out", "outInterferogram.tiff")

app.ExecuteAndWriteOutput()

Limitations

Only Sentinel 1 (IW and StripMap mode) and Cosmo products are supported for now.