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
use crate::core::filter::Filter;
use crate::core::geometry::{Point2f, Vector2f};
use crate::core::paramset::ParamSet;
use crate::core::pbrt::Float;
#[derive(Debug, Default, Copy, Clone)]
pub struct GaussianFilter {
pub alpha: Float,
pub exp_x: Float,
pub exp_y: Float,
pub radius: Vector2f,
pub inv_radius: Vector2f,
}
impl GaussianFilter {
pub fn create(ps: &ParamSet) -> Box<Filter> {
let xw: Float = ps.find_one_float("xwidth", 2.0);
let yw: Float = ps.find_one_float("ywidth", 2.0);
let alpha: Float = ps.find_one_float("alpha", 2.0);
let exp_x: Float = (-alpha * xw * xw).exp();
let exp_y: Float = (-alpha * yw * yw).exp();
let gaussian_filter: Box<Filter> = Box::new(Filter::Gaussian(GaussianFilter {
alpha,
exp_x,
exp_y,
radius: Vector2f { x: xw, y: yw },
inv_radius: Vector2f {
x: 1.0 / xw,
y: 1.0 / yw,
},
}));
gaussian_filter
}
pub fn gaussian(&self, d: Float, expv: Float) -> Float {
(0.0 as Float).max((-self.alpha * d * d).exp() - expv)
}
pub fn evaluate(&self, p: Point2f) -> Float {
self.gaussian(p.x, self.exp_x) * self.gaussian(p.y, self.exp_y)
}
pub fn get_radius(&self) -> Vector2f {
Vector2f {
x: self.radius.x,
y: self.radius.y,
}
}
}