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