Welcome to mirror list, hosted at ThFree Co, Russian Federation.

COM_BlurBaseOperation.cpp « operations « compositor « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 60954503949ff96134ee137be43e5e259b73350f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/*
 * Copyright 2011, Blender Foundation.
 *
 * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 *
 * Contributor: 
 *		Jeroen Bakker 
 *		Monique Dewanchand
 */

#include "COM_BlurBaseOperation.h"
#include "BLI_math.h"

extern "C" {
	#include "RE_pipeline.h"
}

BlurBaseOperation::BlurBaseOperation(): NodeOperation() {
	this->addInputSocket(COM_DT_COLOR);
	this->addInputSocket(COM_DT_VALUE);
	this->addOutputSocket(COM_DT_COLOR);
	this->setComplex(true);
	this->inputProgram = NULL;
	this->data = NULL;
	this->size = 1.0f;
	this->deleteData = false;
}
void BlurBaseOperation::initExecution() {
	this->inputProgram = this->getInputSocketReader(0);
	this->inputSize = this->getInputSocketReader(1);
	this->data->image_in_width= this->getWidth();
	this->data->image_in_height= this->getHeight();
	if (this->data->relative) {
		switch (this->data->aspect) {
		case CMP_NODE_BLUR_ASPECT_NONE:
			this->data->sizex= (int)(this->data->percentx*0.01f*this->data->image_in_width);
			this->data->sizey= (int)(this->data->percenty*0.01f*this->data->image_in_height);
			break;
		case CMP_NODE_BLUR_ASPECT_Y:
			this->data->sizex= (int)(this->data->percentx*0.01f*this->data->image_in_width);
			this->data->sizey= (int)(this->data->percenty*0.01f*this->data->image_in_width);
			break;
		case CMP_NODE_BLUR_ASPECT_X:
			this->data->sizex= (int)(this->data->percentx*0.01f*this->data->image_in_height);
			this->data->sizey= (int)(this->data->percenty*0.01f*this->data->image_in_height);
			break;
		}
	}

	QualityStepHelper::initExecution(COM_QH_MULTIPLY);

}

float* BlurBaseOperation::make_gausstab(int rad)
{
	float *gausstab, sum, val;
	int i, n;

	n = 2 * rad + 1;

	gausstab = new float[n];

	sum = 0.0f;
	for (i = -rad; i <= rad; i++) {
		val= RE_filter_value(this->data->filtertype, (float)i/(float)rad);
		sum += val;
		gausstab[i+rad] = val;
	}

	sum= 1.0f/sum;
	for (i=0; i<n; i++)
		gausstab[i]*= sum;

	return gausstab;
}

void BlurBaseOperation::deinitExecution() {
	this->inputProgram = NULL;
	this->inputSize = NULL;
	if (this->deleteData) {
		delete this->data;
	}
	this->data = NULL;
}

void BlurBaseOperation::updateSize(MemoryBuffer **memoryBuffers) {
	float result[4];
	this->getInputSocketReader(1)->read(result, 0, 0, COM_PS_NEAREST, memoryBuffers);
	this->size = result[0];
}