Advanced Use

This section describes advanced configuration options and tricks.

Environment variables that affect Orfeo ToolBox

The following environment variables are parsed by Orfeo ToolBox. Note that they only affect default values, and that settings in extended filenames, applications, Monteverdi or custom C++ code might override those values.

  • OTB_DEM_DIRECTORY: Default directory were DEM tiles are stored. It should only contain `.hgt or or georeferenced .tif files. Empty if not set (no directory set)
  • OTB_GEOID_FILE: Default path to the geoid file that will be used to retrieve height of DEM above ellipsoid. Empty if not set (no geoid set)
  • OTB_MAX_RAM_HINT: Default maximum memory that OTB should use for processing, in MB. If not set, default value is 128 MB.
  • OTB_LOGGER_LEVEL: Default level of logging for OTB. Should be one of DEBUG, INFO, WARNING, CRITICAL or FATAL, by increasing order of priority. Only messages with a higher priority than the level of logging will be displayed. If not set, default level is INFO.

In addition to OTB specific environment variables, the following environment variables are parsed by third party libraries and also affect how OTB works:

  • GDAL_CACHEMAX: GDAL has an internal cache mechanism to avoid reading or decoding again image chunks. This environment variable controls the amount of memory that GDAL can use for caching. By default, GDAL can use up to 5 percent of the system’s available RAM, which may be a lot. In addition, caching is only needed if the processing chain is likely to request the same chunk several times, which is unlikely to happen for a standard pixel based OTB pipeline. Setting a lower value facilitates the allocation of more memory to OTB itself (using applications -ram parameter or OTB_MAX_RAM_HINT environment variable). If the value is small, i.e. less than 100 000, it is assumed to be in megabytes, otherwise, it is assumed to be in bytes.
  • GDAL_NUM_THREADS: GDAL can take advantage of multi-threading to decode some formats. This variable controls the number of threads GDAL is allowed to use.
  • OPJ_NUM_THREADS: OpenJpeg can take advantage of multi-threading when decoding images. This variable controls the number of threads OpenJpeg is allowed to use.
  • ITK_GLOBAL_DEFAULT_NUMBER_OF_THREADS: This variable controls the number of threads used by ITK for processing.

Extended filenames

Extended filenames are an interesting feature of OTB. With them, it is possible to control several aspects of the behavior of OTB in the OTB-Applications or in our own C++ applications. Historically this feature was designed to facilitate how geo-referencing information was handled.

Indeed, there are multiple ways to define geo-referencing information. For instance, one can use a geographic transform, a cartographic projection, or a sensor model with RPC coefficients. A single image may contain several of these elements, such as in the “ortho-ready” products: this is a type of product that is still in sensor geometry (the sensor model is supplied with the image) but it also contains an approximative geographic transform that can be used to have a quick estimate of the image localisation. For instance, your product may contain a “.TIF” file for the image, along with a “.RPB” file that contains the sensor model coefficients and an “.IMD” file that contains a cartographic projection.

This case leads to the following question: which geo-referencing element should be used when the image is opened in OTB. In fact, it depends on the user’s requirements. For an orthorectification application, the sensor model must be used. In order to specify which information should be skipped, a syntax of extended filenames has been developed for both reading and writing.

Since the development of this feature, we have extended this mechanism for other aspects. This includes band or overview selection in reader part or support create option of GDAL in writer part. The reader and writer extended filename support is based on the same syntax, only the options are different. To benefit from the extended filename mechanism, the following syntax should be used:

Path/Image.ext?&key1=<value1>&key2=<value2>

Note that you’ll probably need to “quote” the filename, especially if calling applications from the bash command line.

Reader options

&geom=<path/filename.geom>
  • Contains the filename of a valid geom file
  • Use the content of the specified geom file instead of image-embedded geometric information
  • empty by default, use the image-embedded information if available

&sdataidx=<(int)idx>
  • Select the sub-dataset to read
  • 0 by default

&resol=<(int)resolution factor>
  • Select the JPEG2000 sub-resolution image to read
  • 0 by default

&bands=r1,r2,...,rn
  • Select a subset of bands from the input image
  • The syntax is inspired by the Python indexing syntax with bands=r1,r2,r3,...,rn where each ri is a band range that can be:
    • a single index (1-based) :
      • 2 means the second band
      • -1 means last band
    • or a range of bands :
      • 3: means from the third band until the last band
      • :-2 means the first band up until the penultimate band
      • 2:4 means bands 2,3 and 4
  • empty by default (all bands are read from the input image)

&skipcarto=<(bool)true>
  • Skip the cartographic information
  • Clears the projectionref, set the origin to [0,0] and the spacing to [1/max(1,r),1/max(1,r)] where r is the resolution factor.
  • Keeps the keyword list
  • false by default

&skipgeom=<(bool)true>
  • Skip the geometric information
  • Clears the keyword list
  • Keeps the projectionref and the origin/spacing information
  • false by default.

&skiprpctag=<(bool)true>
  • Skip the reading of internal RPC tags (see [sec:TypesofSensorModels] for details)
  • false by default.

Writer options

&writegeom=<(bool)false>
  • To activate writing of external geom file
  • true by default

&writerpctags=<(bool)true>
  • To activate writing of RPC tags in TIFF files
  • false by default

&gdal:co:<GDALKEY>=<VALUE>
  • To specify a GDAL creation option
  • For GDAL creation option information, see the dedicated GDAL documentation for each driver. For example, you can find here the information about the GeoTiff create options
  • None by default

&streaming:type=<VALUE>
  • Activates configuration of streaming through extended filenames
  • Override any previous configuration of streaming
  • Allows to configure the kind of streaming to perform
  • Available values are:
    • auto: tiled or stripped streaming mode chosen automatically depending on TileHint read from input files
    • tiled: tiled streaming mode
    • stripped: stripped streaming mode
    • none: explicitly deactivate streaming
  • Not set by default

&streaming:sizemode=<VALUE>
  • Provides the option to choose how the size of the streaming pieces is computed
  • Available values are:
    • auto: size is estimated from the available memory setting by evaluating pipeline memory print
    • height: size is set by setting height of strips or tiles
    • nbsplits: size is computed from a given number of splits
  • Default is auto

&streaming:sizevalue=<VALUE>
  • Parameter for size of streaming pieces computation
  • Value is :
    • if sizemode=auto: available memory in Mb
    • if sizemode=height: height of the strip or tile in pixels
    • if sizemode=nbsplits: number of requested splits for streaming
  • If not provided, the default value is set to 0 and results in different behaviours depending on sizemode (if set to height or nbsplits, streaming is deactivated, if set to auto, value is fetched from configuration or cmake configuration file)

&box=<startx>:<starty>:<sizex>:<sizey>
  • User defined parameters of output image region
  • The region must be set with 4 unsigned integers (the separator used is the colon ’:’). Values are:
    • startx: first index on X (starting with 0)
    • starty: first index on Y (starting with 0)
    • sizex: size along X
    • sizey: size along Y
  • The definition of the region follows the same convention as itk::Region definition in C++. A region is defined by two classes: the itk::Index and itk::Size classes. The origin of the region within the image with which it is associated is defined by Index

&bands=r1,r2,...,rn
  • Select a subset of bands from the output image
  • The syntax is inspired by Python indexing syntax with bands=r1,r2,r3,...,rn where each ri is a band range that can be :
    • a single index (1-based) :
      • 2 means 2nd band
      • -1 means last band
    • or a range of bands :
      • 3: means 3rd band until the last one
      • :-2 means the first bands until the second to last
      • 2:4 means bands 2,3 and 4
  • Empty by default (all bands are write from the output image)

The available syntax for boolean options are:

  • ON, On, on, true, True, 1 are available for setting a ’true’ boolean value
  • OFF, Off, off, false, False, 0 are available for setting a ’false’ boolean value

OGR DataSource options

We extended this process to OGR DataSource. There are three different types of options: open, creation and layer creation, which come directly from the GDAL API. In order to use them, one just needs to specify the family that the option is from.

For open option :

&gdal:oo:<GDALKEY>=<VALUE>

For creation option :

&gdal:co:<GDALKEY>=<VALUE>

For layer creation option :

&gdal:lco:<GDALKEY>=<VALUE>

Examples

Some examples are provided below:

  • Write a file with blockSize equal to 256 and with DEFLATE compression
$ otbcli_Convert -in OTB-Data/Examples/QB_1_ortho.tif -out "/tmp/example1.tif?&gdal:co:TILED=YES&gdal:co:COMPRESS=DEFLATE"
  • Process only first band from a file
$ otbcli_Convert -in "OTB-Data/Examples/QB_1_ortho.tif?&bands=1" -out /tmp/example2.tif