# HG changeset patch # User Sebastien Jodogne # Date 1503132779 -7200 # Node ID 18e9a5429cc49f02877f79da1d3779b185027de3 # Parent 42dcf14389434478bd8e4471e6fbe8770a966674 clarification about --max-size option diff -r 42dcf1438943 -r 18e9a5429cc4 Applications/ApplicationToolbox.cpp --- a/Applications/ApplicationToolbox.cpp Wed Mar 22 15:53:48 2017 +0100 +++ b/Applications/ApplicationToolbox.cpp Sat Aug 19 10:52:59 2017 +0200 @@ -163,6 +163,11 @@ bool ok = false; boost::cmatch what; + // Set white as the default color to avoid compiler warnings + red = 255; + green = 255; + blue = 255; + try { if (regex_match(color.c_str(), what, pattern)) diff -r 42dcf1438943 -r 18e9a5429cc4 Applications/Dicomizer.cpp --- a/Applications/Dicomizer.cpp Wed Mar 22 15:53:48 2017 +0100 +++ b/Applications/Dicomizer.cpp Sat Aug 19 10:52:59 2017 +0200 @@ -505,7 +505,7 @@ ("compression", boost::program_options::value(), "Compression of the target image (\"none\", \"jpeg\" or \"jpeg2000\")") ("jpeg-quality", boost::program_options::value(), "Set quality level for JPEG (0..100)") - ("max-size", boost::program_options::value()->default_value(10), "Maximum size per DICOM instance (in MB)") + ("max-size", boost::program_options::value()->default_value(10), "Maximum size per DICOM instance (in MB), 0 means no limit on the file size") ("folder", boost::program_options::value(), "Folder where to store the output DICOM instances") ("folder-pattern", boost::program_options::value()->default_value("wsi-%06d.dcm"),