comparison Applications/DicomToTiff.cpp @ 69:d529d9ce3c7e

cache for DicomPyramidInstance
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 25 Nov 2016 21:56:07 +0100
parents 147bd6dc28db
children 14146ecd1688
comparison
equal deleted inserted replaced
68:c619c8bd72ed 69:d529d9ce3c7e
298 { 298 {
299 params.SetPassword(options["password"].as<std::string>()); 299 params.SetPassword(options["password"].as<std::string>());
300 } 300 }
301 301
302 OrthancPlugins::OrthancHttpConnection orthanc(params); 302 OrthancPlugins::OrthancHttpConnection orthanc(params);
303 OrthancWSI::DicomPyramid source(orthanc, options["input"].as<std::string>()); 303 OrthancWSI::DicomPyramid source(orthanc, options["input"].as<std::string>(),
304 false /* don't use cached metadata */);
304 305
305 OrthancWSI::TiledPyramidStatistics stats(source); 306 OrthancWSI::TiledPyramidStatistics stats(source);
306 Run(stats, options); 307 Run(stats, options);
307 } 308 }
308 } 309 }