diff OrthancFramework/Sources/DicomParsing/ParsedDicomFile.h @ 4947:dfbe764995cf

added ParsedDicomFile::DecodeAllOverlays()
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 21 Mar 2022 08:59:20 +0100
parents 6a59dc426f93
children 0ea402b4d901
line wrap: on
line diff
--- a/OrthancFramework/Sources/DicomParsing/ParsedDicomFile.h	Sun Mar 20 18:03:32 2022 +0100
+++ b/OrthancFramework/Sources/DicomParsing/ParsedDicomFile.h	Mon Mar 21 08:59:20 2022 +0100
@@ -301,10 +301,13 @@
                     double& rescaleSlope,
                     unsigned int frame) const;
 
-    void ListOverlays(std::set<unsigned int>& groups) const;
+    void ListOverlays(std::set<uint16_t>& groups) const;
 
     ImageAccessor* DecodeOverlay(int& originX,
                                  int& originY,
-                                 unsigned int group) const;
+                                 uint16_t group) const;
+
+    ImageAccessor* DecodeAllOverlays(int& originX,
+                                     int& originY) const;
   };
 }