comparison Framework/DicomizerParameters.h @ 323:429c4efa1fde

added option --force-openslide
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 16 Oct 2024 19:36:01 +0200
parents 0683312e21ba
children a92bb720f90b
comparison
equal deleted inserted replaced
322:778e08291d52 323:429c4efa1fde
67 std::string cytominePublicKey_; 67 std::string cytominePublicKey_;
68 std::string cytominePrivateKey_; 68 std::string cytominePrivateKey_;
69 ImageCompression cytomineCompression_; 69 ImageCompression cytomineCompression_;
70 70
71 // New in release 2.1 71 // New in release 2.1
72 bool forceOpenSlide_;
72 unsigned int tiffAlignment_; 73 unsigned int tiffAlignment_;
73 74
74 public: 75 public:
75 DicomizerParameters(); 76 DicomizerParameters();
76 77
287 288
288 unsigned int GetTiffAlignment() const 289 unsigned int GetTiffAlignment() const
289 { 290 {
290 return tiffAlignment_; 291 return tiffAlignment_;
291 } 292 }
293
294 void SetForceOpenSlide(bool force)
295 {
296 forceOpenSlide_ = force;
297 }
298
299 bool IsForceOpenSlide() const
300 {
301 return forceOpenSlide_;
302 }
292 }; 303 };
293 } 304 }