From 29e6cd65763ba2bbb711e11e51917e0b4d3a983c Mon Sep 17 00:00:00 2001 From: Oleg Alexandrov Date: Thu, 19 Oct 2023 11:33:26 -0700 Subject: [PATCH] Document --skip-image-normalization --- docs/stereodefault.rst | 5 +++++ src/asp/Core/StereoSettings.cc | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/stereodefault.rst b/docs/stereodefault.rst index 4eca3e37d..7add037a4 100644 --- a/docs/stereodefault.rst +++ b/docs/stereodefault.rst @@ -212,6 +212,11 @@ individually-normalize (default = false) utilities. This provides the best possible input to the stereo pipeline and yields the best stereo matching results. +skip-image-normalization + Skip the step of normalizing the values of input images and removing + nodata-pixels. Create instead symbolic links to original images. This is a + speedup option for mapprojected input images. + nodata-value (default = none) Pixels with values less than or equal to this number are treated as no-data. This overrides the nodata values from input images. diff --git a/src/asp/Core/StereoSettings.cc b/src/asp/Core/StereoSettings.cc index 12699efb4..17b7ff872 100644 --- a/src/asp/Core/StereoSettings.cc +++ b/src/asp/Core/StereoSettings.cc @@ -165,7 +165,7 @@ namespace asp { ("no-datum", po::bool_switch(&global.no_datum)->default_value(false)->implicit_value(true), "Do not assume a reliable datum exists, such as for potato-shaped bodies.") ("skip-image-normalization", po::bool_switch(&global.skip_image_normalization)->default_value(false)->implicit_value(true), - "Skip the step of normalizing the values of input images and removing nodata-pixels. Create instead symbolic links to original images. This is a speedup option which helps (and works mostly with) mapprojected input images with no alignment.") + "Skip the step of normalizing the values of input images and removing nodata-pixels. Create instead symbolic links to original images. This is a speedup option for mapprojected input images with no alignment.") ("force-reuse-match-files", po::bool_switch(&global.force_reuse_match_files)->default_value(false)->implicit_value(true), "Force reusing the match files even if older than the images or cameras.") ("part-of-multiview-run", po::bool_switch(&global.part_of_multiview_run)->default_value(false)->implicit_value(true),