00001 #ifndef __RACANALYSE_H 00002 #define __RACANALYSE_H 00003 00004 #ifndef BYTE 00005 #define BYTE unsigned char 00006 #endif 00007 00015 void racMean(int numImg, int width, int height, BYTE **images, float *pxlAverage); 00016 00027 void racNoise(int numImg, int width, int height, float *pxlAverage, BYTE **images, float *pxlNoiseAvg, float &noiseAvg, float &maxNoiseAvg); 00028 00039 void racAutoCov(int numImg, int width, int height, float *pxlAverage, BYTE **images, float **pxlAutoCov, float *minAutoCov, float *maxAutoCov); 00040 00041 #endif