#include <aims/rgb/rgb.h>
#include <aims/signalfilter/filteringfunction_linear.h>
#include <cartobase/object/object.h>
Go to the source code of this file.
◆ AIMS_LIN_FILTERFUNC_MULTICHANNEL_DECLARE
| #define AIMS_LIN_FILTERFUNC_MULTICHANNEL_DECLARE |
( |
| NAME, |
|
|
| T ) |
Value: template <> \
class NAME< T >: public LinearFilteringFunction< T > \
{ \
public: \
NAME( const NAME< T > & other ); \
virtual ~NAME(); \
NAME<T> & operator=( const NAME< T > & other ); \
virtual NAME * clone() const; \
const std::vector<int> & getAmplitude() const; \
protected: \
NAME< T::ChannelType > _m; \
}
Definition at line 29 of file filteringfunction_linear_rgb.h.