mirror of
https://github.com/game-stop/veejay.git
synced 2025-12-19 06:10:01 +01:00
227 lines
6.4 KiB
C
227 lines
6.4 KiB
C
/*
|
|
* Linux VeeJay
|
|
*
|
|
* Copyright(C)2008 Niels Elburg <nwelburg@gmail.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License , or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307 , USA.
|
|
*/
|
|
|
|
#include "common.h"
|
|
#include <veejaycore/vjmem.h>
|
|
#include <veejaycore/vj-msg.h>
|
|
#include <libsubsample/subsample.h>
|
|
#include "softblur.h"
|
|
#include "bgsubtract.h"
|
|
|
|
typedef struct {
|
|
uint8_t *static_bg__;
|
|
uint8_t *bg_frame__[4];
|
|
int bg_ssm ;
|
|
unsigned int bg_n;
|
|
int auto_hist;
|
|
} bgsubtract_t;
|
|
|
|
vj_effect *bgsubtract_init(int width, int height)
|
|
{
|
|
vj_effect *ve = (vj_effect *) vj_calloc(sizeof(vj_effect));
|
|
ve->num_params = 4;
|
|
ve->defaults = (int *) vj_calloc(sizeof(int) * ve->num_params); /* default values */
|
|
ve->limits[0] = (int *) vj_calloc(sizeof(int) * ve->num_params); /* min */
|
|
ve->limits[1] = (int *) vj_calloc(sizeof(int) * ve->num_params); /* max */
|
|
ve->limits[0][0] = 0; /* threshold */
|
|
ve->limits[1][0] = 255;
|
|
ve->limits[0][1] = 0; /* mode */
|
|
ve->limits[1][1] = 2;
|
|
ve->limits[0][2] = 0; /* enable/disable */
|
|
ve->limits[1][2] = 1;
|
|
ve->limits[0][3] = 0; /* alpha */
|
|
ve->limits[1][3] = 2;
|
|
|
|
ve->defaults[0] = 45;
|
|
ve->defaults[1] = 0;
|
|
ve->defaults[2] = 0;
|
|
ve->defaults[3] = 0;
|
|
|
|
ve->description = "Subtract Background";
|
|
ve->extra_frame = 0;
|
|
ve->sub_format = -1;
|
|
ve->has_user = 1;
|
|
ve->sub_format = 0;
|
|
ve->parallel = 0;
|
|
ve->global = 1; /* this effect is not freed when switching samples */
|
|
|
|
ve->param_description = vje_build_param_list( ve->num_params, "Threshold", "BG Method","Enable", "To Alpha");
|
|
|
|
ve->hints = vje_init_value_hint_list( ve->num_params );
|
|
|
|
vje_build_value_hint_list( ve->hints, ve->limits[1][1], 1,"Static BG","CMA BG","Average BG" );
|
|
vje_build_value_hint_list( ve->hints, ve->limits[1][2], 2,"Generate/Show BG","Subtract Background" );
|
|
vje_build_value_hint_list( ve->hints, ve->limits[1][3], 3,"Create Mask","Create Alpha Mask", "Do Nothing" );
|
|
|
|
ve->alpha = FLAG_ALPHA_OUT | FLAG_ALPHA_OPTIONAL;
|
|
|
|
return ve;
|
|
}
|
|
|
|
void *bgsubtract_malloc(int width, int height)
|
|
{
|
|
bgsubtract_t *b = (bgsubtract_t*) vj_calloc(sizeof(bgsubtract_t));
|
|
if(!b) {
|
|
return NULL;
|
|
}
|
|
|
|
b->static_bg__ = (uint8_t*) vj_malloc( RUP8(width + width*height)*4);
|
|
if(!b->static_bg__) {
|
|
free(b);
|
|
return NULL;
|
|
}
|
|
|
|
b->bg_frame__[0] = b->static_bg__;
|
|
b->bg_frame__[1] = b->bg_frame__[0] + RUP8(width*height);
|
|
b->bg_frame__[2] = b->bg_frame__[1] + RUP8(width*height);
|
|
b->bg_frame__[3] = b->bg_frame__[2] + RUP8(width*height);
|
|
|
|
const char *hist = getenv( "VEEJAY_BG_AUTO_HISTOGRAM_EQ" );
|
|
if( hist ) {
|
|
b->auto_hist = atoi( hist );
|
|
}
|
|
|
|
veejay_msg( VEEJAY_MSG_INFO,
|
|
"You can enable/disable the histogram equalizer by setting env var VEEJAY_BG_AUTO_HISTOGRAM_EQ" );
|
|
veejay_msg( VEEJAY_MSG_INFO,
|
|
"Histogram equalization is %s", (b->auto_hist ? "enabled" : "disabled" ));
|
|
|
|
return (void*) b;
|
|
}
|
|
|
|
void bgsubtract_free(void *ptr)
|
|
{
|
|
bgsubtract_t *b = (bgsubtract_t*) ptr;
|
|
free(b->static_bg__);
|
|
free(b);
|
|
}
|
|
|
|
int bgsubtract_prepare(void *ptr, VJFrame *frame)
|
|
{
|
|
bgsubtract_t *b = (bgsubtract_t*) ptr;
|
|
|
|
if( b->auto_hist )
|
|
vje_histogram_auto_eq( frame );
|
|
|
|
//@ copy the iamge
|
|
veejay_memcpy( b->bg_frame__[0], frame->data[0], frame->len );
|
|
|
|
if( frame->ssm ) {
|
|
veejay_memcpy( b->bg_frame__[1], frame->data[1], frame->len );
|
|
veejay_memcpy( b->bg_frame__[2], frame->data[2], frame->len );
|
|
b->bg_ssm = 1;
|
|
}
|
|
else {
|
|
// if data is not subsampled, upsample chroma planes now
|
|
veejay_memcpy( b->bg_frame__[1], frame->data[1], frame->uv_len );
|
|
veejay_memcpy( b->bg_frame__[2], frame->data[2], frame->uv_len );
|
|
chroma_supersample( SSM_422_444, frame, b->bg_frame__ );
|
|
b->bg_ssm = 1;
|
|
}
|
|
|
|
b->bg_n = 0;
|
|
|
|
veejay_msg(2, "Subtract background: Snapped background frame (4:4:4 = %d)", b->bg_ssm);
|
|
|
|
return 1;
|
|
}
|
|
|
|
/* always returns chroma planes in 4:4:4 */
|
|
uint8_t* bgsubtract_get_bg_frame(void *ptr, unsigned int plane)
|
|
{
|
|
bgsubtract_t *b = (bgsubtract_t*) ptr;
|
|
return b->bg_frame__[ plane ];
|
|
}
|
|
|
|
static void bgsubtract_cma_frame( bgsubtract_t *b, const int len, uint8_t *I, uint8_t *O )
|
|
{
|
|
int i;
|
|
const int bg_n1 = (b->bg_n) + 1;
|
|
const int bg_n = b->bg_n;
|
|
for( i = 0; i < len; i ++ )
|
|
{
|
|
O[i] = ((I[i] + (bg_n * O[i])) / bg_n1);
|
|
}
|
|
}
|
|
static void bgsubtract_avg_frame( const int len, uint8_t *I, uint8_t *O)
|
|
{
|
|
int i;
|
|
for( i = 0; i < len; i ++ )
|
|
{
|
|
O[i] = (O[i] + I[i]) >> 1;
|
|
}
|
|
}
|
|
|
|
static void bgsubtract_show_bg( bgsubtract_t *b, VJFrame *frame )
|
|
{
|
|
veejay_memcpy( frame->data[0], b->bg_frame__[0], frame->len );
|
|
if( b->bg_ssm && frame->ssm ) {
|
|
veejay_memcpy( frame->data[1], b->bg_frame__[1], frame->len );
|
|
veejay_memcpy( frame->data[2], b->bg_frame__[2], frame->len );
|
|
} else { /* subsampling does not match */
|
|
veejay_memset( frame->data[1], 128, frame->uv_len );
|
|
veejay_memset( frame->data[2], 128, frame->uv_len );
|
|
}
|
|
}
|
|
|
|
void bgsubtract_apply(void *ptr, VJFrame *frame, int *args) {
|
|
int threshold = args[0];
|
|
int method = args[1];
|
|
int enabled = args[2];
|
|
int alpha = args[3];
|
|
|
|
const int len = frame->len;
|
|
const int uv_len = (frame->ssm ? len : frame->uv_len );
|
|
|
|
bgsubtract_t *b = (bgsubtract_t*) ptr;
|
|
|
|
if( b->auto_hist )
|
|
vje_histogram_auto_eq( frame );
|
|
|
|
if( enabled == 0 ) {
|
|
switch( method ) {
|
|
case 0:
|
|
bgsubtract_show_bg( b, frame );
|
|
break;
|
|
case 1:
|
|
bgsubtract_cma_frame( b, len, frame->data[0], b->bg_frame__[0] );
|
|
bgsubtract_show_bg( b, frame );
|
|
b->bg_n ++;
|
|
break;
|
|
case 2:
|
|
bgsubtract_avg_frame( len, frame->data[0], b->bg_frame__[0] );
|
|
bgsubtract_show_bg(b, frame );
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
else {
|
|
if( alpha == 0 ) {
|
|
veejay_memset( frame->data[1], 128, uv_len );
|
|
veejay_memset( frame->data[2], 128, uv_len );
|
|
vje_diff_plane( b->bg_frame__[0], frame->data[0], frame->data[0], threshold, len );
|
|
}
|
|
else {
|
|
vje_diff_plane( b->bg_frame__[0], frame->data[0], frame->data[3], threshold, len );
|
|
}
|
|
}
|
|
}
|