#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...
|
| |
| virtual float | eval (const float t) const =0 |
| | Evaluates the filter at coordinate 't'. More...
|
| |
| virtual float | initialValue () const |
| | Initial value (zero by default, but need to be different for min/max) More...
|
| |
| virtual float | support () const =0 |
| | Radial width of the filter (half of diameter) More...
|
| |
|
| template<typename Value_T > |
| static void | op (Value_T &accumValue, const Value_T value) |
| |
Definition at line 305 of file Resample.h.
◆ Ptr
◆ CPtr
◆ GaussianFilter()
| GaussianFilter::GaussianFilter |
( |
const float |
alpha = 2.0, |
|
|
const float |
width = 2.0 |
|
) |
| |
|
inline |
Definition at line 314 of file Resample.h.
316 m_exp(std::exp(-alpha * width * width)),
318 { }
◆ eval()
| virtual float GaussianFilter::eval |
( |
const float |
t | ) |
const |
|
inlinevirtual |
◆ support()
| virtual float GaussianFilter::support |
( |
| ) |
const |
|
inlinevirtual |
◆ op()
template<typename Value_T >
| static void GaussianFilter::op |
( |
Value_T & |
accumValue, |
|
|
const Value_T |
value |
|
) |
| |
|
inlinestatic |
◆ isAnalytic
| const bool GaussianFilter::isAnalytic = false |
|
static |
◆ m_alpha
| const float GaussianFilter::m_alpha |
|
private |
◆ m_exp
| const float GaussianFilter::m_exp |
|
private |
◆ m_width
| const float GaussianFilter::m_width |
|
private |
The documentation for this struct was generated from the following file: