00001 #ifndef FCAM_AUTO_EXPOSURE_H 00002 #define FCAM_AUTO_EXPOSURE_H 00003 00004 #include "Frame.h" 00005 00010 namespace FCam { 00011 00012 class Shot; 00013 00031 void autoExpose(Shot *s, const Frame &f, 00032 float maxGain = 32.0f, // ISO 3200 00033 int maxExposure = 125000, // 8 fps 00034 float smoothness = 0.5); 00035 } 00036 00037 #endif 00038