Mercurial > hg > orthanc
diff Core/Enumerations.h @ 1993:e2a3ff770b48
introducing float32 images
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Sat, 14 May 2016 13:41:42 +0200 |
parents | ebce5f456b8e |
children | 6301bbcbcaed |
line wrap: on
line diff
--- a/Core/Enumerations.h Mon May 09 17:56:32 2016 +0200 +++ b/Core/Enumerations.h Sat May 14 13:41:42 2016 +0200 @@ -187,7 +187,13 @@ * {summary}{Graylevel, signed 16bpp image.} * {description}{The image is graylevel. Each pixel is signed and stored in two bytes.} **/ - PixelFormat_SignedGrayscale16 = 5 + PixelFormat_SignedGrayscale16 = 5, + + /** + * {summary}{Graylevel, floating-point image.} + * {description}{The image is graylevel. Each pixel is floating-point and stored in 4 bytes.} + **/ + PixelFormat_Float32 = 6 };