Mercurial > hg > orthanc-wsi
changeset 246:793b8f9c9d52
cppcheck
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 07 Dec 2021 12:01:56 +0100 |
parents | 7ae09ea0cccd |
children | ad51ab8e1b2f |
files | Applications/Dicomizer.cpp Framework/DicomizerParameters.cpp |
diffstat | 2 files changed, 4 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/Applications/Dicomizer.cpp Mon Dec 06 21:23:00 2021 +0100 +++ b/Applications/Dicomizer.cpp Tue Dec 07 12:01:56 2021 +0100 @@ -599,7 +599,7 @@ (OPTION_CYTOMINE_URL, boost::program_options::value<std::string>(), "URL of the source Cytomine server, for instance: https://demo.cytomine.be/") (OPTION_CYTOMINE_PUBLIC_KEY, boost::program_options::value<std::string>(), - "Your personal public key in Cytomine (to be kept secret)") + "Your personal public key in Cytomine (cf. Account in the Cytomine Web interface)") (OPTION_CYTOMINE_PRIVATE_KEY, boost::program_options::value<std::string>(), "Your personal private key in Cytomine (to be kept secret)") (OPTION_CYTOMINE_IMAGE_INSTANCE_ID, boost::program_options::value<int>(),
--- a/Framework/DicomizerParameters.cpp Mon Dec 06 21:23:00 2021 +0100 +++ b/Framework/DicomizerParameters.cpp Tue Dec 07 12:01:56 2021 +0100 @@ -71,7 +71,9 @@ jpegQuality_(90), forceReencode_(false), opticalPath_(OpticalPath_Brightfield), - isCytomineSource_(false) + isCytomineSource_(false), + cytomineImageInstanceId_(-1), + cytomineCompression_(ImageCompression_Png) { backgroundColor_[0] = 255; backgroundColor_[1] = 255;