#include <Filters.h>
Inheritance diagram for pp::Filters::ConnectorFilter
Public Methods | |
ConnectorFilter (SimpleFilter<T>* filter1, SimpleFilter<T>* filter2, float c1 = 1.0f, float c2 = 1.0f) | |
virtual const char* | GetName () const |
SimpleFilter<T>* | GetFirst () const |
SimpleFilter<T>* | GetSecond () const |
float | GetFirstWeight () const |
float | GetSecondWeight () const |
void | SetFirst ( SimpleFilter<T>* f) |
void | SetSecond (SimpleFilter<T>* f) |
void | SetFirstWeight ( float w) |
void | SetSecondWeight (float w) |
Protected Methods | |
T | Apply (SimpleFilter<T>* f, T x) |
Protected Attributes | |
SimpleFilter<T>* | m_f1 |
SimpleFilter<T>* | m_f2 |
float | m_c1 |
float | m_c2 |