# HG changeset patch # User Sebastien Jodogne # Date 1537537720 -7200 # Node ID f3a2d109e3618c8f6fa4a46c10ab70f6412aa762 # Parent 9451431582e337f7845be69ee38a45e457bd0bc9 new orthanc framework diff -r 9451431582e3 -r f3a2d109e361 Core/DicomFormat/DicomImageInformation.cpp --- a/Core/DicomFormat/DicomImageInformation.cpp Thu Sep 20 16:18:00 2018 +0200 +++ b/Core/DicomFormat/DicomImageInformation.cpp Fri Sep 21 15:48:40 2018 +0200 @@ -253,6 +253,12 @@ format = PixelFormat_SignedGrayscale16; return true; } + + if (GetBitsAllocated() == 32 && GetChannelCount() == 1 && !IsSigned()) + { + format = PixelFormat_Grayscale32; + return true; + } } if (GetBitsStored() == 8 && diff -r 9451431582e3 -r f3a2d109e361 Resources/DownloadOrthancFramework.cmake --- a/Resources/DownloadOrthancFramework.cmake Thu Sep 20 16:18:00 2018 +0200 +++ b/Resources/DownloadOrthancFramework.cmake Fri Sep 21 15:48:40 2018 +0200 @@ -87,6 +87,8 @@ set(ORTHANC_FRAMEWORK_MD5 "d0ccdf68e855d8224331f13774992750") elseif (ORTHANC_FRAMEWORK_VERSION STREQUAL "1.4.0") set(ORTHANC_FRAMEWORK_MD5 "81e15f34d97ac32bbd7d26e85698835a") + elseif (ORTHANC_FRAMEWORK_VERSION STREQUAL "1.4.2") + set(ORTHANC_FRAMEWORK_MD5 "d1ee84927dcf668e60eb5868d24b9394") endif() endif() endif()