#include <SmoothingFilter.h>
|
| | SmoothingFilter () |
| |
| virtual agx::Real | update (agx::Real observation, agx::Real s) const =0 |
| | Update statistic variable s with current observation observation.
|
| |
| | Referenced () |
| | Default constructor.
|
| |
| | Referenced (const Referenced &) |
| |
| template<typename T > |
| T * | as () |
| | Subclass casting.
|
| |
| template<typename T > |
| const T * | as () const |
| |
| template<typename T > |
| T * | asSafe () |
| | Safe subclass casting, return nullptr if template type does not match.
|
| |
| template<typename T > |
| const T * | asSafe () const |
| |
| int | getReferenceCount () const |
| |
| template<typename T > |
| bool | is () const |
| | Subclass test.
|
| |
| Referenced & | operator= (const Referenced &) |
| | Assignment operator. Will increment the number of references to the referenced object.
|
| |
| void | reference (void *ptr=nullptr) const |
| | Explicitly increment the reference count by one, indicating that this object has another pointer which is referencing it.
|
| |
| void | unreference (void *ptr=nullptr) const |
| | Decrement the reference count by one, indicating that a pointer to this object is referencing it.
|
| |
| void | unreference_nodelete () const |
| | Decrement the reference count by one, indicating that a pointer to this object is referencing it.
|
| |
Definition at line 25 of file SmoothingFilter.h.
◆ SmoothingFilter()
| agxUtil::SmoothingFilter::SmoothingFilter |
( |
| ) |
|
|
inline |
◆ ~SmoothingFilter()
| virtual agxUtil::SmoothingFilter::~SmoothingFilter |
( |
| ) |
|
|
inlineprotectedvirtual |
◆ update()
Update statistic variable s with current observation observation.
- Parameters
-
| observation | - new observation |
| s | - current statistic variable |
- Returns
- new statistic variable (smoothed value)
Implemented in agxUtil::VariableSmoothingFactorFilter.
The documentation for this class was generated from the following file: