Mercurial > hg > orthanc
comparison Plugins/Samples/GdcmDecoder/OrthancImageWrapper.h @ 1838:2137df64a64c
getters
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 27 Nov 2015 18:00:42 +0100 |
parents | 2faa2abbf311 |
children | 7f68b04c79e8 |
comparison
equal
deleted
inserted
replaced
1837:fbc5522023aa | 1838:2137df64a64c |
---|---|
57 uint32_t GetPitch(); | 57 uint32_t GetPitch(); |
58 | 58 |
59 OrthancPluginPixelFormat GetFormat(); | 59 OrthancPluginPixelFormat GetFormat(); |
60 | 60 |
61 char* GetBuffer(); | 61 char* GetBuffer(); |
62 | |
63 double GetSlope() const | |
64 { | |
65 return slope_; | |
66 } | |
67 | |
68 double GetIntercept() const | |
69 { | |
70 return intercept_; | |
71 } | |
72 | |
73 double GetRowPixelSpacing() const | |
74 { | |
75 return rowPixelSpacing_; | |
76 } | |
77 | |
78 double GetColumnPixelSpacing() const | |
79 { | |
80 return columnPixelSpacing_; | |
81 } | |
62 }; | 82 }; |
63 } | 83 } |