00001 00035 /* conversion routines 00036 void conv_420p_rgb96 (int width, int height, void *src, void *dst); 00037 void conv_420p_grey (int width, int height, void *src, void *dst); 00038 void conv_rgb24_rgb96(int width, int height, void *src, void *dst); 00039 void conv_rgb24_grey(int width, int height, void *src, void *dst); 00040 void conv_rgb32_rgb96(int width, int height, void *src, void *dst); 00041 void conv_rgb32_grey (int width, int height, void *src, void *dst); 00042 00043 void conv_bgr24_rgb96(int width, int height, void *src, void *dst); 00044 00045 00046 */ 00047 00048 // sleeping 00049 00050 00051 #ifndef __VETLIB_VETSTATISTICS_H__ 00052 #define __VETLIB_VETSTATISTICS_H__ 00053 00054 #include "../vetDefs.h" 00055 00056 00057 class vetStatistics 00058 { 00059 protected: 00060 00061 //static members only 00062 vetStatistics() {} 00063 00064 public: 00065 00066 virtual ~vetStatistics() {} 00067 00068 00069 00070 // float getSNR(); 00071 00072 00073 }; 00074 00075 00076 #endif //__VETLIB_VETSTATISTICS_H__ 00077
1.4.4