comparison OrthancFramework/Sources/DicomParsing/ParsedDicomFile.h @ 4777:3b78ba359db3

Support detection of windowing and rescale in Philips multiframe images
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 30 Aug 2021 11:41:05 +0200
parents 9f207131c7f4
children 7053502fbf97
comparison
equal deleted inserted replaced
4776:79d4e155592b 4777:3b78ba359db3
284 void RemovePath(const DicomPath& path); 284 void RemovePath(const DicomPath& path);
285 285
286 void ClearPath(const DicomPath& path, 286 void ClearPath(const DicomPath& path,
287 bool onlyIfExists); 287 bool onlyIfExists);
288 288
289 bool LookupSubSequence(DicomMap& target, 289 bool LookupSequenceItem(DicomMap& target,
290 const DicomPath& path, 290 const DicomPath& path,
291 size_t sequenceIndex) const; 291 size_t sequenceIndex) const;
292
293 void GetDefaultWindowing(double& windowCenter,
294 double& windowWidth,
295 unsigned int frame) const;
296
297 void GetRescale(double& rescaleIntercept,
298 double& rescaleSlope,
299 unsigned int frame) const;
292 }; 300 };
293 } 301 }