comparison OrthancStone/Samples/Sdl/RtViewer/RtViewerSdl.cpp @ 1525:31b0449a163a

JPEG mode re-enabled in MPR RT viewer + some docs
author Benjamin Golinvaux <bgo@osimis.io>
date Sat, 01 Aug 2020 14:42:31 +0200
parents 307a805d0587
children c7a37c3a0b8e
comparison
equal deleted inserted replaced
1524:5bc305a166c2 1525:31b0449a163a
99 99
100 ("orthanc", po::value<std::string>()->default_value("http://localhost:8042"), 100 ("orthanc", po::value<std::string>()->default_value("http://localhost:8042"),
101 "Base URL of the Orthanc instance") 101 "Base URL of the Orthanc instance")
102 102
103 ("ctseries", po::value<std::string>()->default_value("a04ecf01-79b2fc33-58239f7e-ad9db983-28e81afa"), 103 ("ctseries", po::value<std::string>()->default_value("a04ecf01-79b2fc33-58239f7e-ad9db983-28e81afa"),
104 "Orthanc ID of the CT series to load") 104 "Orthanc ID of the CT series to load. This must be supplied.")
105 105
106 ("rtdose", po::value<std::string>()->default_value("830a69ff-8e4b5ee3-b7f966c8-bccc20fb-d322dceb"), 106 ("rtdose", po::value<std::string>()->default_value("830a69ff-8e4b5ee3-b7f966c8-bccc20fb-d322dceb"),
107 "Orthanc ID of the RTDOSE instance to load") 107 "Orthanc ID of the RTDOSE instance to load. This may be an empty string.")
108 108
109 ("rtstruct", po::value<std::string>()->default_value("54460695-ba3885ee-ddf61ac0-f028e31d-a6e474d9"), 109 ("rtstruct", po::value<std::string>()->default_value("54460695-ba3885ee-ddf61ac0-f028e31d-a6e474d9"),
110 "Orthanc ID of the RTSTRUCT instance to load") 110 "Orthanc ID of the RTSTRUCT instance to load. This may be an empty string.")
111 ; 111 ;
112 112
113 po::variables_map vm; 113 po::variables_map vm;
114 try 114 try
115 { 115 {