comparison OrthancFramework/Sources/DicomFormat/DicomMap.h @ 5323:138e9d0c08c1

added DicomMap::GuessPixelDataValueRepresentation()
author Sebastien Jodogne <s.jodogne@gmail.com>
date Sun, 25 Jun 2023 12:29:39 +0200
parents 32df369198ac
children 48b8dae6dc77
comparison
equal deleted inserted replaced
5322:a904a4caf5b7 5323:138e9d0c08c1
83 void SetValue(uint16_t group, 83 void SetValue(uint16_t group,
84 uint16_t element, 84 uint16_t element,
85 const std::string& str, 85 const std::string& str,
86 bool isBinary); 86 bool isBinary);
87 87
88 void SetValue(const DicomTag& tag, 88 void SetSequenceValue(const DicomTag& tag,
89 const Json::Value& value); 89 const Json::Value& value);
90 90
91 bool HasTag(uint16_t group, uint16_t element) const; 91 bool HasTag(uint16_t group, uint16_t element) const;
92 92
93 bool HasTag(const DicomTag& tag) const; 93 bool HasTag(const DicomTag& tag) const;
94 94
228 void RemoveSequences(); 228 void RemoveSequences();
229 229
230 void DumpMainDicomTags(Json::Value& target, 230 void DumpMainDicomTags(Json::Value& target,
231 ResourceType level) const; 231 ResourceType level) const;
232 232
233 ValueRepresentation GuessPixelDataValueRepresentation(DicomTransferSyntax transferSyntax) const;
234
233 void Print(FILE* fp) const; // For debugging only 235 void Print(FILE* fp) const; // For debugging only
234 }; 236 };
235 } 237 }