Mercurial > hg > orthanc
comparison OrthancFramework/Sources/DicomParsing/Internals/DicomFrameIndex.cpp @ 4137:6774605d4341
keep only one signature for FromDcmtkBridge::ExtractDicomSummary()
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 06 Aug 2020 17:38:55 +0200 |
parents | 2724977419fb |
children | 1a26daefc3fe |
comparison
equal
deleted
inserted
replaced
4136:2724977419fb | 4137:6774605d4341 |
---|---|
355 return; | 355 return; |
356 } | 356 } |
357 | 357 |
358 // Extract information about the image structure | 358 // Extract information about the image structure |
359 DicomMap tags; | 359 DicomMap tags; |
360 FromDcmtkBridge::ExtractDicomSummary(tags, dicom, 0 /* don't truncate tags */); | 360 std::set<DicomTag> ignoreTagLength; |
361 FromDcmtkBridge::ExtractDicomSummary(tags, dicom, ORTHANC_MAXIMUM_TAG_LENGTH, ignoreTagLength); | |
361 | 362 |
362 DicomImageInformation information(tags); | 363 DicomImageInformation information(tags); |
363 | 364 |
364 // Access to the raw pixel data | 365 // Access to the raw pixel data |
365 if (DicomImageDecoder::IsPsmctRle1(dicom)) | 366 if (DicomImageDecoder::IsPsmctRle1(dicom)) |