A mean filter which works on doubles. More...
#include <param_test.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. | |
ParamTest () | |
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. | |
~ParamTest () | |
Destructor to clean up. |
A mean filter which works on doubles.
Definition at line 50 of file param_test.h.
filters::ParamTest< T >::ParamTest | ( | ) |
Construct the filter with the expected width and height.
Definition at line 74 of file param_test.h.
filters::ParamTest< T >::~ParamTest | ( | ) |
Destructor to clean up.
Definition at line 85 of file param_test.h.
bool filters::ParamTest< T >::configure | ( | ) | [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 79 of file param_test.h.
bool filters::ParamTest< T >::update | ( | const T & | data_in, |
T & | data_out | ||
) | [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 91 of file param_test.h.