comparison Framework/Volumes/VolumeImage.h @ 32:517c46f527cd

sync
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 19 Dec 2016 11:00:23 +0100
parents 351ab0da0150
children 6465fbd23bce
comparison
equal deleted inserted replaced
31:9aace933cb64 32:517c46f527cd
62 virtual bool IsFullQualityAxial(size_t slice) = 0; 62 virtual bool IsFullQualityAxial(size_t slice) = 0;
63 }; 63 };
64 64
65 65
66 private: 66 private:
67 std::auto_ptr<ISeriesLoader> loader_; 67 std::auto_ptr<ISeriesLoader> loader_;
68 std::auto_ptr<ImageBuffer3D> buffer_; 68 std::auto_ptr<ImageBuffer3D> buffer_;
69 std::vector<boost::thread*> threads_; 69 std::vector<boost::thread*> threads_;
70 bool started_; 70 bool started_;
71 bool continue_; 71 bool continue_;
72 ObserversRegistry<ISliceableVolume> observers_; 72 ObserversRegistry<ISliceableVolume> observers_;
73 bool loadingComplete_; 73 bool loadingComplete_;
74 MessagingToolbox::Timestamp lastUpdate_; 74 MessagingToolbox::Timestamp lastUpdate_;
75 std::auto_ptr<DicomDataset> referenceDataset_; 75 std::auto_ptr<OrthancPlugins::IDicomDataset> referenceDataset_;
76 std::auto_ptr<IDownloadPolicy> policy_; 76 std::auto_ptr<IDownloadPolicy> policy_;
77 77
78 std::auto_ptr<ParallelSlices> axialGeometry_; 78 std::auto_ptr<ParallelSlices> axialGeometry_;
79 std::auto_ptr<ParallelSlices> coronalGeometry_; 79 std::auto_ptr<ParallelSlices> coronalGeometry_;
80 std::auto_ptr<ParallelSlices> sagittalGeometry_; 80 std::auto_ptr<ParallelSlices> sagittalGeometry_;
81 81