comparison Applications/DicomToTiff.cpp @ 31:8e1dfd531335

fix
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 27 Oct 2016 17:25:57 +0200
parents 62adabb8c122
children 91fc9583b2de
comparison
equal deleted inserted replaced
30:3d9ecbdfe71f 31:8e1dfd531335
54 54
55 boost::program_options::options_description target("Options for the target TIFF image"); 55 boost::program_options::options_description target("Options for the target TIFF image");
56 target.add_options() 56 target.add_options()
57 ("color", boost::program_options::value<std::string>(), "Color of the background for missing tiles (e.g. \"255,0,0\")") 57 ("color", boost::program_options::value<std::string>(), "Color of the background for missing tiles (e.g. \"255,0,0\")")
58 ("reencode", boost::program_options::value<bool>(), 58 ("reencode", boost::program_options::value<bool>(),
59 "Whether to reencode each tile in JPEG (no transcoding, much slower) (Boolean)") 59 "Whether to re-encode each tile in JPEG (no transcoding, much slower) (Boolean)")
60 ("jpeg-quality", boost::program_options::value<int>(), "Set quality level for JPEG (0..100)") 60 ("jpeg-quality", boost::program_options::value<int>(), "Set quality level for JPEG (0..100)")
61 ; 61 ;
62 62
63 boost::program_options::options_description hidden; 63 boost::program_options::options_description hidden;
64 hidden.add_options() 64 hidden.add_options()