35#ifndef AIMS_SIGNALFILTER_MEDIANFILTER_H
36#define AIMS_SIGNALFILTER_MEDIANFILTER_H
40#include <aims/connectivity/structuring_element.h>
125 _sx(sx), _sy(sy), _sz(sz)
146 std::vector<double> amplitude(3,0.);
147 amplitude[0] = .5 * (double)_sx;
148 amplitude[1] = .5 * (double)_sy;
149 amplitude[2] = .5 * (double)_sz;
150 aims::strel::Cube se( amplitude,
true );
ElementFilteringImageAlgorithm(const ElementFilteringFunction< ChannelType > &f, const StructuringElement &se=strel::Cube(1.))
ElementFilteringImageAlgorithm & operator=(ElementFilteringImageAlgorithm &other)
virtual void execute(const carto::VolumeRef< T > &in, carto::VolumeRef< T > &out) const
ImageAlgorithmInterface<T> Pure virtual method.