Ejemplo n.º 1
0
/* with min_t -> max_t select the threshold to 'noise ' */
void noisepencil_apply(VJFrame *frame, int width, int height, int type, int coeef, int min_t,
	int max_t) {

	switch(type) {
		case 0:
		noisepencil_1_apply(frame->data,width,height,coeef,min_t,max_t);	break;
		case 1:
		noisepencil_2_apply(frame->data,width,height,coeef,min_t,max_t);	break;
		case 2:
		noisepencil_3_apply(frame->data,width,height,coeef,min_t,max_t);	break;
		case 3:
		noisepencil_4_apply(frame->data,width,height,coeef,min_t,max_t);	break;
	}
}
Ejemplo n.º 2
0
/* with min_t -> max_t select the threshold to 'noise ' */
void noisepencil_apply(VJFrame *frame, int type, int coeef, int min_t, int max_t)
{
	const unsigned int width = frame->width;
	const unsigned int height = frame->height;
	switch(type) {
		case 0:
		noisepencil_1_apply(frame->data,width, height, coeef,min_t,max_t);
			break;
		case 1:
		noisepencil_2_apply(frame->data, width, height, coeef,min_t,max_t);
			break;
		case 2:
		noisepencil_3_apply(frame->data, width, height, coeef,min_t,max_t);
			break;
		case 3:
		noisepencil_4_apply(frame->data, width, height, coeef,min_t,max_t);
			break;
		case 4:
		noisepencil_5_apply(frame->data, width, height, coeef,min_t,max_t);
			break;
	}
}