Stereo-rectification deformation grid generator
Brief Description
Generates two deformation fields to resample in epipolar geometry, a pair of stereo images up to the sensor model precision
Tags
Stereo
Long Description
This application generates a pair of deformation grid to stereo-rectify a pair of stereo images according to sensor modelling and a mean elevation hypothesis.
This application is the first part of the stereo reconstruction framework. The output deformation grids can be passed to the GridBasedImageResampling application for actual resampling into epipolar geometry.
There are several ways to set the elevation source:
* An arbitrary constant elevation
* A DEM directory
* Compute an average elevation from a DEM
If needed, the application can compute inverse resampling grids (from epipolar to original sensor geometry). Don't forget to check the other outputs from the application. For instance, the application gives the X and Y size of the rectified images, along with an estimated baseline ratio.
Parameters
Input and output data (io): This group of parameters allows setting the input and output images.
Left input image (io.inleft): The left image from the stereo pair, in sensor geometry.
Right input image (io.inright): The right image from the stereo pair, in sensor geometry.
Left output deformation grid (io.outleft): The deformation grid to resample the left image from sensor geometry to epipolar geometry.
Right output deformation grid (io.outright): The deformation grid to resample the right image from sensor geometry to epipolar geometry.
Epipolar geometry and grid parameters (epi): Parameters of the epipolar geometry and output grids
Elevation management (elevation): This group of parameters allows managing elevation values. Supported formats are SRTM, DTED or any geotiff. DownloadSRTMTiles application could be a useful tool to list/download tiles related to a product.
DEM directory (epi.elevation.dem): This parameter allows selecting a directory containing Digital Elevation Model files. Note that this directory should contain only DEM files. Unexpected behaviour might occurs if other images are found in this directory.
Geoid File (epi.elevation.geoid): Use a geoid grid to get the height above the ellipsoid in case there is no DEM available, no coverage for some points or pixels with no_data in the DEM tiles. A version of the geoid can be found on the OTB website(https://gitlab.orfeo-toolbox.org/orfeotoolbox/otb-data/blob/master/Input/DEM/egm96.grd).
Default elevation (epi.elevation.default): This parameter allows setting the default height above ellipsoid when there is no DEM available, no coverage for some points or pixels with no_data in the DEM tiles, and no geoid file has been set. This is also used by some application as an average elevation value.
Average elevation computed from DEM (avgdem): Average elevation computed from the provided DEM
Sub-sampling step (epi.elevation.avgdem.step): Step of sub-sampling for average elevation estimation
Average elevation value (epi.elevation.avgdem.value): Average elevation value estimated from DEM
Minimum disparity from DEM (epi.elevation.avgdem.mindisp): Disparity corresponding to estimated minimum elevation over the left image
Maximum disparity from DEM (epi.elevation.avgdem.maxdisp): Disparity corresponding to estimated maximum elevation over the left image
Scale of epipolar images (epi.scale): The scale parameter allows generating zoomed-in (scale < 1) or zoomed-out (scale > 1) epipolar images.
Step of the deformation grid (in nb. of pixels) (epi.step): Stereo-rectification deformation grid only varies slowly. Therefore, it is recommended to use a coarser grid (higher step value) in case of large images
Rectified image size X (epi.rectsizex): The application computes the optimal rectified image size so that the whole left input image fits into the rectified area. However, due to the scale and step parameter, this size may not match the size of the deformation field output. In this case, one can use these output values.
Rectified image size Y (epi.rectsizey): The application computes the optimal rectified image size so that the whole left input image fits into the rectified area. However, due to the scale and step parameter, this size may not match the size of the deformation field output. In this case, one can use these output values.
Mean baseline ratio (epi.baseline): This parameter is the mean value, in pixels.meters^-1, of the baseline to sensor altitude ratio. It can be used to convert disparities to physical elevation, since a disparity of one pixel will correspond to an elevation offset of the invert of this value with respect to the mean elevation.
Write inverse fields (inverse): This group of parameter allows generating the inverse fields as well
Left inverse deformation grid (inverse.outleft): The deformation grid to resample the left image from the epipolar geometry back into its original sensor geometry.
Right inverse deformation grid (inverse.outright): The output deformation grid to resample the right image from the epipolar geometry back into its original sensor geometry.
Sub-sampling rate for inversion (inverse.ssrate): Grid inversion is an heavy process that implies spline regression on control points. To avoid eating to much memory, this parameter allows one to first sub-sample the field to invert.
Load otb application from xml file (inxml): Load otb application from xml file
Save otb application to xml file (outxml): Save otb application to xml file
Limitations
Generation of the deformation grid is not streamable, pay attention to this fact when setting the grid step.
Authors
OTB-Team
See also
otbGridBasedImageResampling
Example of use
io.inleft: wv2_xs_left.tif
io.inright: wv2_xs_left.tif
io.outleft: wv2_xs_left_epi_field.tif
io.outright: wv2_xs_right_epi_field.tif
epi.elevation.default: 400
otbcli_StereoRectificationGridGenerator -io.inleft wv2_xs_left.tif -io.inright wv2_xs_left.tif -io.outleft wv2_xs_left_epi_field.tif -io.outright wv2_xs_right_epi_field.tif -epi.elevation.default 400