2007-03-24 06:57:29 +00:00
|
|
|
/**
|
|
|
|
|
* $Id$
|
|
|
|
|
*
|
|
|
|
|
* ***** BEGIN GPL LICENSE BLOCK *****
|
|
|
|
|
*
|
|
|
|
|
* 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,
|
2010-02-12 13:34:04 +00:00
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2007-03-24 06:57:29 +00:00
|
|
|
*
|
|
|
|
|
* The Original Code is Copyright (C) 2006 Blender Foundation.
|
|
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* The Original Code is: all of this file.
|
|
|
|
|
*
|
2009-09-10 04:12:22 +00:00
|
|
|
* Contributor(s): Bob Holcomb
|
2007-03-24 06:57:29 +00:00
|
|
|
*
|
|
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "../CMP_util.h"
|
|
|
|
|
|
|
|
|
|
/* ******************* channel Difference Matte ********************************* */
|
|
|
|
|
static bNodeSocketType cmp_node_diff_matte_in[]={
|
2009-09-10 04:12:22 +00:00
|
|
|
{SOCK_RGBA,1,"Image 1", 0.8f, 0.8f, 0.8f, 1.0f, 0.0f, 1.0f},
|
|
|
|
|
{SOCK_RGBA,1,"Image 2", 0.8f, 0.8f, 0.8f, 1.0f, 0.0f, 1.0f},
|
2007-03-24 06:57:29 +00:00
|
|
|
{-1,0,""}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static bNodeSocketType cmp_node_diff_matte_out[]={
|
|
|
|
|
{SOCK_RGBA,0,"Image", 0.8f, 0.8f, 0.8f, 1.0f, 0.0f, 1.0f},
|
|
|
|
|
{SOCK_VALUE,0,"Matte",0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 1.0f},
|
|
|
|
|
{-1,0,""}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* note, keyvals is passed on from caller as stack array */
|
|
|
|
|
/* might have been nicer as temp struct though... */
|
2009-09-10 04:12:22 +00:00
|
|
|
static void do_diff_matte(bNode *node, float *colorbuf, float *imbuf1, float *imbuf2)
|
2007-03-24 06:57:29 +00:00
|
|
|
{
|
|
|
|
|
NodeChroma *c= (NodeChroma *)node->storage;
|
2009-09-10 04:12:22 +00:00
|
|
|
float tolerence=c->t1;
|
|
|
|
|
float falloff=c->t2;
|
|
|
|
|
float difference;
|
|
|
|
|
float alpha;
|
2007-03-24 06:57:29 +00:00
|
|
|
|
2009-09-10 04:12:22 +00:00
|
|
|
difference=fabs(imbuf2[0]-imbuf1[0])+
|
|
|
|
|
fabs(imbuf2[1]-imbuf1[1])+
|
|
|
|
|
fabs(imbuf2[2]-imbuf1[2]);
|
|
|
|
|
|
|
|
|
|
/*average together the distances*/
|
|
|
|
|
difference=difference/3.0;
|
|
|
|
|
|
|
|
|
|
VECCOPY(colorbuf, imbuf1);
|
|
|
|
|
|
|
|
|
|
/*make 100% transparent*/
|
|
|
|
|
if(difference < tolerence){
|
|
|
|
|
colorbuf[3]=0.0;
|
2007-03-24 06:57:29 +00:00
|
|
|
}
|
2009-09-10 04:12:22 +00:00
|
|
|
/*in the falloff region, make partially transparent */
|
|
|
|
|
else if(difference < falloff+tolerence){
|
|
|
|
|
difference=difference-tolerence;
|
|
|
|
|
alpha=difference/falloff;
|
|
|
|
|
/*only change if more transparent than before */
|
|
|
|
|
if(alpha < imbuf1[3]) {
|
|
|
|
|
colorbuf[3]=alpha;
|
|
|
|
|
}
|
|
|
|
|
else { /* leave as before */
|
|
|
|
|
colorbuf[3]=imbuf1[3];
|
|
|
|
|
}
|
|
|
|
|
}
|
2007-03-24 06:57:29 +00:00
|
|
|
else {
|
|
|
|
|
/*foreground object*/
|
2009-09-10 04:12:22 +00:00
|
|
|
colorbuf[3]= imbuf1[3];
|
2007-03-24 06:57:29 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void node_composit_exec_diff_matte(void *data, bNode *node, bNodeStack **in, bNodeStack **out)
|
|
|
|
|
{
|
2009-09-10 04:12:22 +00:00
|
|
|
CompBuf *outbuf;
|
|
|
|
|
CompBuf *imbuf1;
|
|
|
|
|
CompBuf *imbuf2;
|
2007-03-24 06:57:29 +00:00
|
|
|
NodeChroma *c;
|
|
|
|
|
|
|
|
|
|
/*is anything connected?*/
|
|
|
|
|
if(out[0]->hasoutput==0 && out[1]->hasoutput==0) return;
|
|
|
|
|
/*must have an image imput*/
|
|
|
|
|
if(in[0]->data==NULL) return;
|
2009-09-10 04:12:22 +00:00
|
|
|
if(in[1]->data==NULL) return;
|
2007-03-24 06:57:29 +00:00
|
|
|
|
2009-09-10 04:12:22 +00:00
|
|
|
imbuf1=typecheck_compbuf(in[0]->data, CB_RGBA);
|
|
|
|
|
imbuf2=typecheck_compbuf(in[1]->data, CB_RGBA);
|
2007-03-24 06:57:29 +00:00
|
|
|
|
|
|
|
|
c=node->storage;
|
2009-09-10 04:12:22 +00:00
|
|
|
outbuf=dupalloc_compbuf(imbuf1);
|
2007-03-24 06:57:29 +00:00
|
|
|
|
|
|
|
|
/* note, processor gets a keyvals array passed on as buffer constant */
|
2009-09-10 04:12:22 +00:00
|
|
|
composit2_pixel_processor(node, outbuf, imbuf1, in[0]->vec, imbuf2, in[1]->vec, do_diff_matte, CB_RGBA, CB_RGBA);
|
2007-03-24 06:57:29 +00:00
|
|
|
|
2009-09-10 04:12:22 +00:00
|
|
|
out[0]->data=outbuf;
|
2007-03-24 06:57:29 +00:00
|
|
|
if(out[1]->hasoutput)
|
2009-09-10 04:12:22 +00:00
|
|
|
out[1]->data=valbuf_from_rgbabuf(outbuf, CHAN_A);
|
2009-10-07 22:05:30 +00:00
|
|
|
generate_preview(data, node, outbuf);
|
2009-09-10 04:12:22 +00:00
|
|
|
|
|
|
|
|
if(imbuf1!=in[0]->data)
|
|
|
|
|
free_compbuf(imbuf1);
|
2007-03-24 06:57:29 +00:00
|
|
|
|
2009-09-10 04:12:22 +00:00
|
|
|
if(imbuf2!=in[1]->data)
|
|
|
|
|
free_compbuf(imbuf2);
|
2007-03-24 06:57:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void node_composit_init_diff_matte(bNode *node)
|
|
|
|
|
{
|
|
|
|
|
NodeChroma *c= MEM_callocN(sizeof(NodeChroma), "node chroma");
|
|
|
|
|
node->storage= c;
|
2009-09-10 04:12:22 +00:00
|
|
|
c->t1= 0.1f;
|
|
|
|
|
c->t2= 0.1f;
|
2007-03-24 06:57:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bNodeType cmp_node_diff_matte={
|
2007-03-26 15:07:38 +00:00
|
|
|
/* *next,*prev */ NULL, NULL,
|
2007-04-04 13:58:12 +00:00
|
|
|
/* type code */ CMP_NODE_DIFF_MATTE,
|
|
|
|
|
/* name */ "Difference Key",
|
|
|
|
|
/* width+range */ 200, 80, 250,
|
|
|
|
|
/* class+opts */ NODE_CLASS_MATTE, NODE_PREVIEW|NODE_OPTIONS,
|
|
|
|
|
/* input sock */ cmp_node_diff_matte_in,
|
|
|
|
|
/* output sock */ cmp_node_diff_matte_out,
|
|
|
|
|
/* storage */ "NodeChroma",
|
|
|
|
|
/* execfunc */ node_composit_exec_diff_matte,
|
|
|
|
|
/* butfunc */ NULL,
|
|
|
|
|
/* initfunc */ node_composit_init_diff_matte,
|
|
|
|
|
/* freestoragefunc */ node_free_standard_storage,
|
|
|
|
|
/* copystoragefunc */ node_copy_standard_storage,
|
|
|
|
|
/* id */ NULL
|
2007-03-24 06:57:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|