comparison 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
comparison
equal deleted inserted replaced
1992:9161e3ef0d17 1993:e2a3ff770b48
185 185
186 /** 186 /**
187 * {summary}{Graylevel, signed 16bpp image.} 187 * {summary}{Graylevel, signed 16bpp image.}
188 * {description}{The image is graylevel. Each pixel is signed and stored in two bytes.} 188 * {description}{The image is graylevel. Each pixel is signed and stored in two bytes.}
189 **/ 189 **/
190 PixelFormat_SignedGrayscale16 = 5 190 PixelFormat_SignedGrayscale16 = 5,
191
192 /**
193 * {summary}{Graylevel, floating-point image.}
194 * {description}{The image is graylevel. Each pixel is floating-point and stored in 4 bytes.}
195 **/
196 PixelFormat_Float32 = 6
191 }; 197 };
192 198
193 199
194 /** 200 /**
195 * {summary}{The extraction mode specifies the way the values of the pixels are scaled when downloading a 2D image.} 201 * {summary}{The extraction mode specifies the way the values of the pixels are scaled when downloading a 2D image.}