Mercurial > hg > orthanc
diff OrthancServer/Internals/DicomImageDecoder.cpp @ 2381:b8969010b534
uncoupling DCMTK primitives from Orthanc::Configuration
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 29 Aug 2017 19:59:01 +0200 |
parents | 96b3ec054b69 |
children |
line wrap: on
line diff
--- a/OrthancServer/Internals/DicomImageDecoder.cpp Tue Aug 29 16:49:44 2017 +0200 +++ b/OrthancServer/Internals/DicomImageDecoder.cpp Tue Aug 29 19:59:01 2017 +0200 @@ -85,7 +85,6 @@ #include "../ToDcmtkBridge.h" #include "../FromDcmtkBridge.h" #include "../ParsedDicomFile.h" -#include "../OrthancInitialization.h" #if ORTHANC_ENABLE_PNG == 1 # include "../../Core/Images/PngWriter.h" @@ -257,7 +256,7 @@ // See also: http://support.dcmtk.org/wiki/dcmtk/howto/accessing-compressed-data DicomMap m; - Configuration::ExtractDicomSummary(m, dataset); + FromDcmtkBridge::ExtractDicomSummary(m, dataset); /** * Create an accessor to the raw values of the DICOM image. @@ -329,7 +328,7 @@ bool ignorePhotometricInterpretation) { DicomMap m; - Configuration::ExtractDicomSummary(m, dataset); + FromDcmtkBridge::ExtractDicomSummary(m, dataset); DicomImageInformation info(m); PixelFormat format;