imageFormat.h
Go to the documentation of this file.00001
00015 #ifndef _DLRCOMPUTERVISION_IMAGEFORMAT_H_
00016 #define _DLRCOMPUTERVISION_IMAGEFORMAT_H_
00017
00018 namespace dlr {
00019
00020 namespace computerVision {
00021
00027 enum ImageFormat {
00028 GRAY1,
00029 GRAY8,
00030 GRAY16,
00031 GRAY32,
00032 GRAY64,
00033 GRAY_SIGNED16,
00034 GRAY_SIGNED32,
00035 GRAY_FLOAT32,
00036 GRAY_FLOAT64,
00037 RGB8,
00038 RGB16,
00039 RGB_SIGNED16,
00040 RGB_SIGNED32,
00041 RGB_FLOAT32,
00042 RGB_FLOAT64,
00043 HSV_FLOAT64,
00044 YIQ_FLOAT64,
00045 BGRA8,
00046 RGBA8,
00047 YUV420
00048 };
00049
00050 }
00051
00052 }
00053
00054 #endif