Mercurial > hg > orthanc
diff Core/Images/ImageAccessor.cpp @ 2415:7e217a1cc63f
PixelFormat_Float32
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Mon, 02 Oct 2017 22:02:05 +0200 |
parents | a3a65de1840f |
children | 878b59270859 |
line wrap: on
line diff
--- a/Core/Images/ImageAccessor.cpp Mon Oct 02 15:31:20 2017 +0200 +++ b/Core/Images/ImageAccessor.cpp Mon Oct 02 22:02:05 2017 +0200 @@ -218,6 +218,10 @@ ToMatlabStringInternal<uint16_t>(buffer, *this); break; + case PixelFormat_Grayscale32: + ToMatlabStringInternal<uint32_t>(buffer, *this); + break; + case PixelFormat_SignedGrayscale16: ToMatlabStringInternal<int16_t>(buffer, *this); break;