comparison OrthancServer/FromDcmtkBridge.h @ 532:b22312081388 dicom-rt

extract roi geometry
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 30 Aug 2013 16:09:19 +0200
parents 722b56b99093
children 8cfc6119a5bd
comparison
equal deleted inserted replaced
529:bd2087bb6450 532:b22312081388
70 70
71 void Setup(const char* content, 71 void Setup(const char* content,
72 size_t size); 72 size_t size);
73 73
74 public: 74 public:
75 typedef std::list< std::pair<DicomTag, unsigned int> > SequencePath;
76
75 ParsedDicomFile(const char* content, 77 ParsedDicomFile(const char* content,
76 size_t size) 78 size_t size)
77 { 79 {
78 Setup(content, size); 80 Setup(content, size);
79 } 81 }
111 DicomReplaceMode mode); 113 DicomReplaceMode mode);
112 114
113 void RemovePrivateTags(); 115 void RemovePrivateTags();
114 116
115 bool GetTagValue(std::string& value, 117 bool GetTagValue(std::string& value,
118 const DicomTag& tag);
119
120 bool GetTagValue(std::string& value,
121 const SequencePath& path,
116 const DicomTag& tag); 122 const DicomTag& tag);
117 123
118 DicomInstanceHasher GetHasher(); 124 DicomInstanceHasher GetHasher();
119 }; 125 };
120 126