Esempio n. 1
0
void apply_wb_by8_c ( GstTisWhiteBalance* self, GstBuffer* buf, byte wb_r, byte wb_g, byte wb_b)
{
    gst_debug_log (gst_tiswhitebalance_debug_category,
                   GST_LEVEL_INFO,
                   "tiswhitebalance",
                   "",
                   850,
                   NULL,
                   "Applying white balance with values: R:%d G:%d B:%d", wb_r, wb_g, wb_b);

    wb_image_c( self, buf, wb_r, wb_g, wb_b);
}
Esempio n. 2
0
void apply_wb_by8_c ( GstTcamWhitebalance* self, GstBuffer* buf, byte wb_r, byte wb_g, byte wb_b)
{
    GST_DEBUG("Applying white balance with values: R:%d G:%d B:%d", wb_r, wb_g, wb_b);

    wb_image_c( self, buf, wb_r, wb_g, wb_b);
}