#include <Resample.h>
|
virtual float | eval (const float t) const |
| Evaluates the filter at coordinate 't'. More...
|
|
| GaussianFilter (const float alpha=2.0, const float width=2.0) |
|
virtual float | support () const |
| Radial width of the filter (half of diameter) More...
|
|
Definition at line 174 of file Resample.h.
GaussianFilter::GaussianFilter |
( |
const float |
alpha = 2.0 , |
|
|
const float |
width = 2.0 |
|
) |
| |
|
inline |
virtual float GaussianFilter::eval |
( |
const float |
t | ) |
const |
|
inlinevirtual |
Evaluates the filter at coordinate 't'.
Implements Filter.
Definition at line 186 of file Resample.h.
189 return std::max(0.0f, std::exp(-
m_alpha * x * x) -
m_exp);
virtual float GaussianFilter::support |
( |
| ) |
const |
|
inlinevirtual |
Radial width of the filter (half of diameter)
Implements Filter.
Definition at line 191 of file Resample.h.
const float GaussianFilter::m_alpha |
|
private |
const float GaussianFilter::m_exp |
|
private |
const float GaussianFilter::m_width |
|
private |
The documentation for this struct was generated from the following file: