aimsalgo  5.1.2
Neuroimaging image processing
medianfilter.h
Go to the documentation of this file.
1 /* This software and supporting documentation are distributed by
2  * Institut Federatif de Recherche 49
3  * CEA/NeuroSpin, Batiment 145,
4  * 91191 Gif-sur-Yvette cedex
5  * France
6  *
7  * This software is governed by the CeCILL-B license under
8  * French law and abiding by the rules of distribution of free software.
9  * You can use, modify and/or redistribute the software under the
10  * terms of the CeCILL-B license as circulated by CEA, CNRS
11  * and INRIA at the following URL "http://www.cecill.info".
12  *
13  * As a counterpart to the access to the source code and rights to copy,
14  * modify and redistribute granted by the license, users are provided only
15  * with a limited warranty and the software's author, the holder of the
16  * economic rights, and the successive licensors have only limited
17  * liability.
18  *
19  * In this respect, the user's attention is drawn to the risks associated
20  * with loading, using, modifying and/or developing or reproducing the
21  * software by the user in light of its specific status of free software,
22  * that may mean that it is complicated to manipulate, and that also
23  * therefore means that it is reserved for developers and experienced
24  * professionals having in-depth computer knowledge. Users are therefore
25  * encouraged to load and test the software's suitability as regards their
26  * requirements in conditions enabling the security of their systems and/or
27  * data to be ensured and, more generally, to use and operate it in the
28  * same conditions as regards security.
29  *
30  * The fact that you are presently reading this means that you have had
31  * knowledge of the CeCILL-B license and that you accept its terms.
32  */
33 
34 
35 #ifndef AIMS_SIGNALFILTER_MEDIANFILTER_H
36 #define AIMS_SIGNALFILTER_MEDIANFILTER_H
37 
41 
42 namespace aims {
43 
44  template <typename T>
46  {
47  public:
49  MedianFilter( const StructuringElement & se = strel::Cube(1.0),
50  const carto::Object & options = carto::none() ):
51  ElementFilteringImageAlgorithm<T>( MedianFilterFunc<ChannelType>( options ),
52  se )
53  {}
54  MedianFilter( const carto::Object & options ):
55  ElementFilteringImageAlgorithm<T>( MedianFilterFunc<ChannelType>( options ),
56  strel::Cube(1.0) )
57  {}
58  MedianFilter( const MedianFilter<T> & other ):
60  {}
63  {
65  return *this;
66  }
68  return new MedianFilter<T>(*this); }
69  };
70 
71  template <typename T>
73  {
74  public:
76  NotNullMedianFilter( const StructuringElement & se = strel::Cube(1.0),
77  const carto::Object & options = carto::none() ):
78  ElementFilteringImageAlgorithm<T>( NotNullMedianFilterFunc<ChannelType>( options ),
79  se )
80  {}
81  NotNullMedianFilter( const carto::Object & options ):
82  ElementFilteringImageAlgorithm<T>( NotNullMedianFilterFunc<ChannelType>( options ),
83  strel::Cube(1.0) )
84  {}
87  {}
90  {
92  return *this;
93  }
94  NotNullMedianFilter<T> *clone() const { return new NotNullMedianFilter<T>(*this); }
95  };
96 
97 } // namespace aims
98 
99 //============================================================================
100 // Backward compatibility bindings
101 //============================================================================
102 
103 #include <vector>
104 
105 template <typename T>
107 {
108  public:
109  MedianSmoothing( int sx = 3, int sy = 3, int sz = 3 );
110  virtual ~MedianSmoothing();
111  virtual carto::VolumeRef<T> doit( const carto::VolumeRef<T>& in ) const;
112  private:
113  MedianSmoothing<T> & operator = ( const MedianSmoothing<T> & );
114  int _sx;
115  int _sy;
116  int _sz;
117 };
118 
119 //----------------------------------------------------------------------------
120 // DEFINITIONS
121 //----------------------------------------------------------------------------
122 
123 template <typename T>
124 MedianSmoothing<T>::MedianSmoothing( int sx, int sy, int sz ):
125  _sx(sx), _sy(sy), _sz(sz)
126 {}
127 
128 template <typename T>
130 {}
131 
132 template <typename T>
134  const MedianSmoothing<T> & other
135 )
136 {
137  _sx = other._sx;
138  _sy = other._sy;
139  _sz = other._sz;
140  return (*this);
141 }
142 
143 template <typename T>
145 {
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 );
151  aims::MedianFilter<T> f( se );
152  return f.execute( in );
153 }
154 
155 
156 #endif
MedianSmoothing(int sx=3, int sy=3, int sz=3)
Definition: medianfilter.h:124
virtual ~MedianSmoothing()
Definition: medianfilter.h:129
virtual carto::VolumeRef< T > doit(const carto::VolumeRef< T > &in) const
Definition: medianfilter.h:144
ElementFilteringImageAlgorithm & operator=(ElementFilteringImageAlgorithm &other)
virtual void execute(const carto::VolumeRef< T > &in, carto::VolumeRef< T > &out) const
ImageAlgorithmInterface<T> Pure virtual method.
MedianFilter(const carto::Object &options)
Definition: medianfilter.h:54
carto::DataTypeTraits< T >::ChannelType ChannelType
Definition: medianfilter.h:48
MedianFilter< T > * clone() const
ImageAlgorithmInterface<T> Pure virtual method.
Definition: medianfilter.h:67
MedianFilter< T > & operator=(const MedianFilter< T > &other)
Definition: medianfilter.h:62
MedianFilter(const MedianFilter< T > &other)
Definition: medianfilter.h:58
MedianFilter(const StructuringElement &se=strel::Cube(1.0), const carto::Object &options=carto::none())
Definition: medianfilter.h:49
NotNullMedianFilter< T > * clone() const
ImageAlgorithmInterface<T> Pure virtual method.
Definition: medianfilter.h:94
NotNullMedianFilter< T > & operator=(const NotNullMedianFilter< T > &other)
Definition: medianfilter.h:89
NotNullMedianFilter(const carto::Object &options)
Definition: medianfilter.h:81
NotNullMedianFilter(const StructuringElement &se=strel::Cube(1.0), const carto::Object &options=carto::none())
Definition: medianfilter.h:76
carto::DataTypeTraits< T >::ChannelType ChannelType
Definition: medianfilter.h:75
Object none()