set defaults for de-speckle

This commit is contained in:
Campbell Barton
2012-08-23 07:02:11 +00:00
parent 1ab5a4f0ed
commit 4e772065d7
2 changed files with 9 additions and 2 deletions

View File

@@ -128,8 +128,8 @@ void DespeckleOperation::executePixel(float output[4], int x, int y, void *data)
bool DespeckleOperation::determineDependingAreaOfInterest(rcti *input, ReadBufferOperation *readOperation, rcti *output)
{
rcti newInput;
int addx = 1; //(this->m_filterWidth - 1) / 2 + 1;
int addy = 1; //(this->m_filterHeight - 1) / 2 + 1;
int addx = 2; //(this->m_filterWidth - 1) / 2 + 1;
int addy = 2; //(this->m_filterHeight - 1) / 2 + 1;
newInput.xmax = input->xmax + addx;
newInput.xmin = input->xmin - addx;
newInput.ymax = input->ymax + addy;

View File

@@ -51,6 +51,12 @@ static void node_composit_exec_despeckle(void *UNUSED(data), bNode *UNUSED(node)
#endif /* WITH_COMPOSITOR_LEGACY */
static void node_composit_init_despeckle(bNodeTree *UNUSED(ntree), bNode* node, bNodeTemplate *UNUSED(ntemp))
{
node->custom3 = 0.5f;
node->custom4 = 0.5f;
}
void register_node_type_cmp_despeckle(bNodeTreeType *ttype)
{
static bNodeType ntype;
@@ -58,6 +64,7 @@ void register_node_type_cmp_despeckle(bNodeTreeType *ttype)
node_type_base(ttype, &ntype, CMP_NODE_DESPECKLE, "Despeckle", NODE_CLASS_OP_FILTER, NODE_PREVIEW|NODE_OPTIONS);
node_type_socket_templates(&ntype, cmp_node_despeckle_in, cmp_node_despeckle_out);
node_type_size(&ntype, 80, 40, 120);
node_type_init(&ntype, node_composit_init_despeckle);
#ifdef WITH_COMPOSITOR_LEGACY
node_type_exec(&ntype, node_composit_exec_despeckle);
#endif