comparison Core/Enumerations.h @ 2645:89b789366596

Grayscale64 pixel format
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 31 May 2018 08:31:22 +0200
parents 83b8b6743531
children 193ef9c1b731
comparison
equal deleted inserted replaced
2637:5094369664f0 2645:89b789366596
222 /** 222 /**
223 * {summary}{Color image in RGB48 format.} 223 * {summary}{Color image in RGB48 format.}
224 * {description}{This format describes a color image. The pixels are stored in 6 224 * {description}{This format describes a color image. The pixels are stored in 6
225 * consecutive bytes. The memory layout is RGB.} 225 * consecutive bytes. The memory layout is RGB.}
226 **/ 226 **/
227 PixelFormat_RGB48 = 9 227 PixelFormat_RGB48 = 9,
228
229 /**
230 * {summary}{Graylevel, unsigned 64bpp image.}
231 * {description}{The image is graylevel. Each pixel is unsigned and stored in 4 bytes.}
232 **/
233 PixelFormat_Grayscale64 = 10
228 }; 234 };
229 235
230 236
231 /** 237 /**
232 * {summary}{The extraction mode specifies the way the values of the pixels are scaled when downloading a 2D image.} 238 * {summary}{The extraction mode specifies the way the values of the pixels are scaled when downloading a 2D image.}