diff OrthancFramework/Sources/DicomParsing/ParsedDicomFile.h @ 4945:6a59dc426f93

added ParsedDicomFile::DecodeOverlay()
author Sebastien Jodogne <s.jodogne@gmail.com>
date Sun, 20 Mar 2022 11:35:17 +0100
parents 43e613a7756b
children dfbe764995cf
line wrap: on
line diff
--- a/OrthancFramework/Sources/DicomParsing/ParsedDicomFile.h	Wed Mar 16 17:21:02 2022 +0100
+++ b/OrthancFramework/Sources/DicomParsing/ParsedDicomFile.h	Sun Mar 20 11:35:17 2022 +0100
@@ -300,5 +300,11 @@
     void GetRescale(double& rescaleIntercept,
                     double& rescaleSlope,
                     unsigned int frame) const;
+
+    void ListOverlays(std::set<unsigned int>& groups) const;
+
+    ImageAccessor* DecodeOverlay(int& originX,
+                                 int& originY,
+                                 unsigned int group) const;
   };
 }