00001 #ifndef FCAM_DEMOSAIC_H 00002 #define FCAM_DEMOSAIC_H 00003 00007 #include "../Frame.h" 00008 00009 namespace FCam { 00010 00019 Image demosaic(Frame src, float contrast = 50.0f, 00020 bool denoise = true, int blackLevel = 25, 00021 float gamma = 2.2f); 00022 00023 00028 Image makeThumbnail(Frame src, const Size &thumbSize = Size(640,480), 00029 float contrast = 50.0f, int blackLevel = 25, 00030 float gamma = 2.2f); 00031 } 00032 00033 #endif