$search
A increment filter which works on doubles. More...
#include <increment.h>
Public Member Functions | |
virtual bool | configure () |
Pure virtual function for the sub class to configure the filter This function must be implemented in the derived class. | |
IncrementFilter () | |
Construct the filter with the expected width and height. | |
virtual bool | update (const T &data_in, T &data_out) |
Update the filter and return the data seperately. | |
~IncrementFilter () | |
Destructor to clean up. |
A increment filter which works on doubles.
Definition at line 48 of file increment.h.
filters::IncrementFilter< T >::IncrementFilter | ( | ) | [inline] |
Construct the filter with the expected width and height.
Definition at line 70 of file increment.h.
filters::IncrementFilter< T >::~IncrementFilter | ( | ) | [inline] |
Destructor to clean up.
Definition at line 82 of file increment.h.
bool filters::IncrementFilter< T >::configure | ( | ) | [inline, virtual] |
Pure virtual function for the sub class to configure the filter This function must be implemented in the derived class.
Implements filters::FilterBase< T >.
Definition at line 75 of file increment.h.
bool filters::IncrementFilter< T >::update | ( | const T & | data_in, | |
T & | data_out | |||
) | [inline, virtual] |
Update the filter and return the data seperately.
data_in | T array with length width | |
data_out | T array with length width |
Implements filters::FilterBase< T >.
Definition at line 88 of file increment.h.