diff 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
line wrap: on
line diff
--- a/OrthancFramework/Sources/DicomFormat/DicomMap.h	Sun Jun 25 11:48:47 2023 +0200
+++ b/OrthancFramework/Sources/DicomFormat/DicomMap.h	Sun Jun 25 12:29:39 2023 +0200
@@ -85,8 +85,8 @@
                   const std::string& str,
                   bool isBinary);
 
-    void SetValue(const DicomTag& tag,
-                  const Json::Value& value);
+    void SetSequenceValue(const DicomTag& tag,
+                          const Json::Value& value);
 
     bool HasTag(uint16_t group, uint16_t element) const;
 
@@ -230,6 +230,8 @@
     void DumpMainDicomTags(Json::Value& target,
                            ResourceType level) const;
 
+    ValueRepresentation GuessPixelDataValueRepresentation(DicomTransferSyntax transferSyntax) const;
+
     void Print(FILE* fp) const;  // For debugging only
   };
 }