$search
A increment filter which works on arrays. 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. | |
MultiChannelIncrementFilter () | |
Construct the filter with the expected width and height. | |
virtual bool | update (const std::vector< T > &data_in, std::vector< T > &data_out) |
Update the filter and return the data seperately. | |
~MultiChannelIncrementFilter () | |
Destructor to clean up. |
A increment filter which works on arrays.
Definition at line 99 of file increment.h.
filters::MultiChannelIncrementFilter< T >::MultiChannelIncrementFilter | ( | ) | [inline] |
Construct the filter with the expected width and height.
Definition at line 126 of file increment.h.
filters::MultiChannelIncrementFilter< T >::~MultiChannelIncrementFilter | ( | ) | [inline] |
Destructor to clean up.
Definition at line 138 of file increment.h.
bool filters::MultiChannelIncrementFilter< 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::MultiChannelFilterBase< T >.
Definition at line 131 of file increment.h.
bool filters::MultiChannelIncrementFilter< T >::update | ( | const std::vector< T > & | data_in, | |
std::vector< 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::MultiChannelFilterBase< T >.
Definition at line 144 of file increment.h.