comparison Framework/Volumes/ImageBuffer3D.h @ 179:db21c1810c89 wasm

moving PixelTraits to the Orthanc core
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 13 Mar 2018 17:42:49 +0100
parents f7be90de6d1b
children a12ca0f4aaaa
comparison
equal deleted inserted replaced
178:6dafcdec4b87 179:db21c1810c89
92 92
93 void GetSliceSize(unsigned int& width, 93 void GetSliceSize(unsigned int& width,
94 unsigned int& height, 94 unsigned int& height,
95 VolumeProjection projection); 95 VolumeProjection projection);
96 96
97 const Orthanc::ImageAccessor& GetInternalImage() const
98 {
99 return image_;
100 }
101
97 unsigned int GetWidth() const 102 unsigned int GetWidth() const
98 { 103 {
99 return width_; 104 return width_;
100 } 105 }
101 106