comparison Core/DicomFormat/DicomImageInformation.h @ 860:80c7e53a69b5 jpeg

bugfix
author Sebastien Jodogne <s.jodogne@gmail.com>
date Sat, 07 Jun 2014 10:32:15 +0200
parents ff530685e46a
children f5b0207967bc
comparison
equal deleted inserted replaced
859:610a9a1ed855 860:80c7e53a69b5
46 unsigned int samplesPerPixel_; 46 unsigned int samplesPerPixel_;
47 unsigned int numberOfFrames_; 47 unsigned int numberOfFrames_;
48 48
49 bool isPlanar_; 49 bool isPlanar_;
50 bool isSigned_; 50 bool isSigned_;
51 size_t bytesPerPixel_; 51 size_t bytesPerValue_;
52 52
53 unsigned int bitsAllocated_; 53 unsigned int bitsAllocated_;
54 unsigned int bitsStored_; 54 unsigned int bitsStored_;
55 unsigned int highBit_; 55 unsigned int highBit_;
56 56
80 unsigned int GetBitsStored() const 80 unsigned int GetBitsStored() const
81 { 81 {
82 return bitsStored_; 82 return bitsStored_;
83 } 83 }
84 84
85 size_t GetBytesPerPixel() const 85 size_t GetBytesPerValue() const
86 { 86 {
87 return bytesPerPixel_; 87 return bytesPerValue_;
88 } 88 }
89 89
90 bool IsSigned() const 90 bool IsSigned() const
91 { 91 {
92 return isSigned_; 92 return isSigned_;