comparison 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
comparison
equal deleted inserted replaced
4943:47d734fa30f6 4945:6a59dc426f93
298 unsigned int frame) const; 298 unsigned int frame) const;
299 299
300 void GetRescale(double& rescaleIntercept, 300 void GetRescale(double& rescaleIntercept,
301 double& rescaleSlope, 301 double& rescaleSlope,
302 unsigned int frame) const; 302 unsigned int frame) const;
303
304 void ListOverlays(std::set<unsigned int>& groups) const;
305
306 ImageAccessor* DecodeOverlay(int& originX,
307 int& originY,
308 unsigned int group) const;
303 }; 309 };
304 } 310 }