|
Averaging operator. A simple example implementation of ImpulseBucket. More...
#include <ImpulseAvgOp.h>
Public Member Functions | |
ImpulseAvg (const ImpulseAvg &avg) | |
ImpulseAvg (const ImpulseAvgConf &conf) | |
virtual void | init (const Channel &src, bool horizontal) |
Adapt to input geometry, type, and scaling. | |
virtual void | reset () |
Clear statistics before traversing each row or column. | |
virtual void | addLeft (int i, double value, double weight) |
Accumulate encoded value. | |
virtual void | addRight (int i, double value, double weight) |
Accumulate encoded value. | |
virtual void | addDown (int i, double value, double weight) |
Accumulate encoded value. | |
virtual void | addUp (int i, double value, double weight) |
Accumulate encoded value. | |
virtual double | get (int i) |
Return natural (not encoded) value at position i. | |
virtual double | getWeight (int i) |
Return weight at position i. More... | |
Public Member Functions inherited from ImpulseAvgConf | |
ImpulseAvgConf (const ImpulseAvgConf &conf) | |
Public Member Functions inherited from BeanLike | |
virtual const std::string & | getName () const |
Return the name of an instance. | |
virtual const std::string & | getDescription () const |
Return a brief description. | |
bool | hasParameters () const |
template<class F > | |
F | getParameter (const std::string &p) const |
Gets a single parameter. | |
const ReferenceMap & | getParameters () const |
ReferenceMap & | getParameters () |
template<class F > | |
void | setParametersFromEntries (const F &args) |
void | setParameters (std::initializer_list< Variable::init_pair_t > args) |
Grants access to (if above hidden) | |
virtual void | setParameters (const std::string &p, char assignmentSymbol='=', char separatorSymbol=0) |
Sets comma-separated parameters in a predetermined order "a,b,c" or by specifing them "b=2". More... | |
template<class T > | |
void | setParameters (const std::map< std::string, T > &args) |
Set parameters. | |
template<class T > | |
void | setParameters (const SmartMap< T > &args) |
Set parameters. | |
void | setParameter (const std::string &p, const Castable &value) |
Sets a single parameter. | |
template<class T > | |
void | setParameter (const std::string &p, const VariableT< T > &value) |
template<class F > | |
void | setParameter (const std::string &p, const F &value) |
Sets a single parameter. More... | |
template<class F > | |
void | setParameter (const std::string &p, std::initializer_list< F > value) |
Sets a single parameter. | |
BeanLike & | operator= (const BeanLike &b) |
virtual std::ostream & | toStream (std::ostream &ostr, bool compact=true) const |
BeanLike (const BeanLike &b) | |
BeanLike (const std::string &name, const std::string &description="") | |
Additional Inherited Members | |
Public Types inherited from ImpulseBucket< ImpulseAvgConf > | |
typedef ImpulseAvgConf | conf_t |
Public Attributes inherited from ImpulseAvgConf | |
Decay4< double > | decays |
Protected Member Functions inherited from BeanLike | |
virtual void | storeLastArguments (const std::string &p) |
Called after setParameters() | |
virtual void | updateBean () const |
Called after setParameters() | |
Protected Attributes inherited from BeanLike | |
const std::string | name |
const std::string | description |
ReferenceMap | parameters |
Averaging operator. A simple example implementation of ImpulseBucket.
|
virtual |
Return weight at position i.
Weight should reflect quality, reliability or relevance of the value returned by get(int i).
Implements ImpulseBucket< ImpulseAvgConf >.