00001 #ifndef FCAM_AUTO_WHITE_BALANCE_H 00002 #define FCAM_AUTO_WHITE_BALANCE_H 00003 00004 #include "Frame.h" 00005 00010 namespace FCam { 00011 00012 class Shot; 00013 00022 void autoWhiteBalance(Shot *s, const Frame &f, 00023 int minWB = 3200, 00024 int maxWB = 7000, 00025 float smoothness = 0.5); 00026 } 00027 00028 #endif