#include <Resample.h>
|
virtual float | eval (const float x) const |
| 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...
|
|
| MaxFilter () |
|
| MaxFilter (const float width) |
|
virtual float | support () const |
| Radial width of the filter (half of diameter) More...
|
|
|
template<typename T > |
static void | op (Imath::Vec3< T > &accumValue, const Imath::Vec3< T > value) |
|
template<typename Value_T > |
static void | op (Value_T &accumValue, const Value_T value) |
|
Definition at line 209 of file Resample.h.
MaxFilter::MaxFilter |
( |
const float |
width | ) |
|
|
inline |
virtual float MaxFilter::eval |
( |
const float |
t | ) |
const |
|
inlinevirtual |
virtual float MaxFilter::support |
( |
| ) |
const |
|
inlinevirtual |
virtual float MaxFilter::initialValue |
( |
| ) |
const |
|
inlinevirtual |
Initial value (zero by default, but need to be different for min/max)
Reimplemented from Filter.
Definition at line 238 of file Resample.h.
References detail::max().
T max(const T a, const T2 b)
Max operation on mixed types.
template<typename T >
static void MaxFilter::op |
( |
Imath::Vec3< T > & |
accumValue, |
|
|
const Imath::Vec3< T > |
value |
|
) |
| |
|
inlinestatic |
Definition at line 245 of file Resample.h.
References detail::max().
247 accumValue.x =
std::max(accumValue.x, value.x);
248 accumValue.y =
std::max(accumValue.y, value.y);
249 accumValue.z =
std::max(accumValue.z, value.z);
T max(const T a, const T2 b)
Max operation on mixed types.
template<typename Value_T >
static void MaxFilter::op |
( |
Value_T & |
accumValue, |
|
|
const Value_T |
value |
|
) |
| |
|
inlinestatic |
Definition at line 253 of file Resample.h.
References detail::max().
255 accumValue =
std::max(accumValue, value);
T max(const T a, const T2 b)
Max operation on mixed types.
const bool MaxFilter::isAnalytic = true |
|
static |
const float MaxFilter::m_width |
|
private |
The documentation for this struct was generated from the following file: