[TASK] Move gauss filter function to private section.
This commit is contained in:
parent
deb273cc4a
commit
3194a084e6
|
@ -31,6 +31,12 @@ class CannyEdgeMachine {
|
||||||
double t_low;
|
double t_low;
|
||||||
double t_high;
|
double t_high;
|
||||||
|
|
||||||
|
double gauss(int x, int y, double sigma) {
|
||||||
|
// e^-((x^2 + y^2)/(sigma^2))
|
||||||
|
double upper_part = pow(M_E, (-1.0) * ( (pow(x, 2)+pow(y, 2))/pow(sigma, 2) ) );
|
||||||
|
return upper_part;
|
||||||
|
};
|
||||||
|
|
||||||
public:
|
public:
|
||||||
CannyEdgeMachine(LazyImage* original, LazyImage* working_copy){
|
CannyEdgeMachine(LazyImage* original, LazyImage* working_copy){
|
||||||
this->original = original;
|
this->original = original;
|
||||||
|
@ -75,12 +81,6 @@ class CannyEdgeMachine {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
double gauss(int x, int y, double sigma) {
|
|
||||||
// e^-((x^2 + y^2)/(sigma^2))
|
|
||||||
double upper_part = pow(M_E, (-1.0) * ( (pow(x, 2)+pow(y, 2))/pow(sigma, 2) ) );
|
|
||||||
return upper_part;
|
|
||||||
};
|
|
||||||
|
|
||||||
void doGaussBlur(void) {
|
void doGaussBlur(void) {
|
||||||
int filter_width = this->filter_size;
|
int filter_width = this->filter_size;
|
||||||
double sigma = this->filter_sigma;
|
double sigma = this->filter_sigma;
|
||||||
|
|
Loading…
Reference in New Issue