Skip to content

Commit

Permalink
Document --skip-image-normalization
Browse files Browse the repository at this point in the history
  • Loading branch information
oleg-alexandrov committed Oct 19, 2023
1 parent 3e2bd63 commit 29e6cd6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions docs/stereodefault.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/asp/Core/StereoSettings.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down

0 comments on commit 29e6cd6

Please sign in to comment.