comparison Core/Enumerations.h @ 2649:193ef9c1b731 jobs

integration mainline->jobs
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 01 Jun 2018 10:51:06 +0200
parents 740983056f9e 89b789366596
children c196d76cb8fa
comparison
equal deleted inserted replaced
2648:e1893d31652a 2649:193ef9c1b731
223 /** 223 /**
224 * {summary}{Color image in RGB48 format.} 224 * {summary}{Color image in RGB48 format.}
225 * {description}{This format describes a color image. The pixels are stored in 6 225 * {description}{This format describes a color image. The pixels are stored in 6
226 * consecutive bytes. The memory layout is RGB.} 226 * consecutive bytes. The memory layout is RGB.}
227 **/ 227 **/
228 PixelFormat_RGB48 = 9 228 PixelFormat_RGB48 = 9,
229
230 /**
231 * {summary}{Graylevel, unsigned 64bpp image.}
232 * {description}{The image is graylevel. Each pixel is unsigned and stored in 4 bytes.}
233 **/
234 PixelFormat_Grayscale64 = 10
229 }; 235 };
230 236
231 237
232 /** 238 /**
233 * {summary}{The extraction mode specifies the way the values of the pixels are scaled when downloading a 2D image.} 239 * {summary}{The extraction mode specifies the way the values of the pixels are scaled when downloading a 2D image.}