comparison Framework/Volumes/ImageBuffer3D.h @ 765:f6438fdc447e

cont
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 23 May 2019 14:57:52 +0200
parents c3bbb130abc4
children 2d8ab34c8c91
comparison
equal deleted inserted replaced
764:f36a6f7e7bdf 765:f6438fdc447e
97 Orthanc::PixelFormat GetFormat() const 97 Orthanc::PixelFormat GetFormat() const
98 { 98 {
99 return format_; 99 return format_;
100 } 100 }
101 101
102 unsigned int GetBytesPerPixel() const
103 {
104 return Orthanc::GetBytesPerPixel(format_);
105 }
106
102 uint64_t GetEstimatedMemorySize() const; 107 uint64_t GetEstimatedMemorySize() const;
103 108
104 bool GetRange(float& minValue, 109 bool GetRange(float& minValue,
105 float& maxValue) const; 110 float& maxValue) const;
106 111