From 137596a2f5ca7c6f89d227b7c86c242f5999b7db Mon Sep 17 00:00:00 2001 From: Dakota Benjamin Date: Mon, 27 Feb 2017 10:10:17 -0500 Subject: [PATCH] Change default tone mapping param to 'none' --- opendm/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opendm/config.py b/opendm/config.py index b277fb04..c8b4debb 100644 --- a/opendm/config.py +++ b/opendm/config.py @@ -269,7 +269,7 @@ def config(): parser.add_argument('--texturing-tone-mapping', metavar='', choices=['none', 'gamma'], - default='gamma', + default='none', help='Turn on gamma tone mapping or none for no tone ' 'mapping. Choices are \'gamma\' or \'none\'. ' 'Default: %(default)s ')