comparison Framework/Layers/DicomSeriesVolumeSlicer.h @ 714:d2c0e347ddc2

deprecating DicomFrameConverter
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 20 May 2019 16:26:34 +0200
parents 6af3099ed8da
children 4f2416d519b4
comparison
equal deleted inserted replaced
713:e63c8b9b7b02 714:d2c0e347ddc2
43 ORTHANC_STONE_MESSAGE(__FILE__, __LINE__); 43 ORTHANC_STONE_MESSAGE(__FILE__, __LINE__);
44 44
45 private: 45 private:
46 const Orthanc::ImageAccessor& frame_; 46 const Orthanc::ImageAccessor& frame_;
47 SliceImageQuality imageQuality_; 47 SliceImageQuality imageQuality_;
48 const Slice& slice_; 48 const Deprecated::Slice& slice_;
49 49
50 public: 50 public:
51 FrameReadyMessage(DicomSeriesVolumeSlicer& origin, 51 FrameReadyMessage(DicomSeriesVolumeSlicer& origin,
52 const Orthanc::ImageAccessor& frame, 52 const Orthanc::ImageAccessor& frame,
53 SliceImageQuality imageQuality, 53 SliceImageQuality imageQuality,
54 const Slice& slice) : 54 const Deprecated::Slice& slice) :
55 OriginMessage(origin), 55 OriginMessage(origin),
56 frame_(frame), 56 frame_(frame),
57 imageQuality_(imageQuality), 57 imageQuality_(imageQuality),
58 slice_(slice) 58 slice_(slice)
59 { 59 {
67 SliceImageQuality GetImageQuality() const 67 SliceImageQuality GetImageQuality() const
68 { 68 {
69 return imageQuality_; 69 return imageQuality_;
70 } 70 }
71 71
72 const Slice& GetSlice() const 72 const Deprecated::Slice& GetSlice() const
73 { 73 {
74 return slice_; 74 return slice_;
75 } 75 }
76 }; 76 };
77 77
105 size_t GetSlicesCount() const 105 size_t GetSlicesCount() const
106 { 106 {
107 return loader_.GetSlicesCount(); 107 return loader_.GetSlicesCount();
108 } 108 }
109 109
110 const Slice& GetSlice(size_t slice) const 110 const Deprecated::Slice& GetSlice(size_t slice) const
111 { 111 {
112 return loader_.GetSlice(slice); 112 return loader_.GetSlice(slice);
113 } 113 }
114 114
115 virtual bool GetExtent(std::vector<Vector>& points, 115 virtual bool GetExtent(std::vector<Vector>& points,