aimsalgo  5.0.5
Neuroimaging image processing
meanfilter.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_MEANFILTER_H
36 #define AIMS_SIGNALFILTER_MEANFILTER_H
37 
41 
42 namespace aims {
43 
44  template <typename T>
46  {
47  public:
49  MeanFilter( const StructuringElement & se = strel::Cube(1.0),
50  const carto::Object & options = carto::none() ):
51  ElementFilteringImageAlgorithm<T>( MeanFilterFunc<ChannelType>( options ),
52  se )
53  {}
54  MeanFilter( const carto::Object & options ):
55  ElementFilteringImageAlgorithm<T>( MeanFilterFunc<ChannelType>( options ),
56  strel::Cube(1.0) )
57  {}
58  MeanFilter( const MeanFilter<T> & other ):
60  {}
63  {
65  return *this;
66  }
67  MeanFilter<T> *clone() const { return new MeanFilter<T>(*this); }
68  };
69 
70  template <typename T>
72  {
73  public:
75  NotNullMeanFilter( const StructuringElement & se = strel::Cube(1.0),
76  const carto::Object & options = carto::none() ):
77  ElementFilteringImageAlgorithm<T>( NotNullMeanFilterFunc<ChannelType>( options ),
78  se )
79  {}
80  NotNullMeanFilter( const carto::Object & options ):
81  ElementFilteringImageAlgorithm<T>( NotNullMeanFilterFunc<ChannelType>( options ),
82  strel::Cube(1.0) )
83  {}
86  {}
89  {
91  return *this;
92  }
93  NotNullMeanFilter<T> *clone() const { return new NotNullMeanFilter<T>(*this); }
94  };
95 
96 } // namespace aims
97 
98 //============================================================================
99 // Backward compatibility bindings
100 //============================================================================
101 
102 #include <aims/data/data_g.h>
103 #include <vector>
104 
105 template <typename T>
107 {
108  public:
109  MeanSmoothing( int sx = 3, int sy = 3, int sz = 3 );
110  virtual ~MeanSmoothing();
111  virtual AimsData<T> doit( const AimsData<T>& in );
112  private:
114  int _sx;
115  int _sy;
116  int _sz;
117 };
118 
119 //----------------------------------------------------------------------------
120 // DEFINITIONS
121 //----------------------------------------------------------------------------
122 
123 template <typename T>
124 MeanSmoothing<T>::MeanSmoothing( 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 MeanSmoothing<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::MeanFilter<T> f( se );
152  return f.execute( in );
153 }
154 
155 
156 #endif
MeanFilter< T > & operator=(const MeanFilter< T > &other)
Definition: meanfilter.h:62
NotNullMeanFilter(const carto::Object &options)
Definition: meanfilter.h:80
virtual AimsData< T > doit(const AimsData< T > &in)
Definition: meanfilter.h:144
carto::DataTypeTraits< T >::ChannelType ChannelType
Definition: meanfilter.h:48
NotNullMeanFilter< T > & operator=(const NotNullMeanFilter< T > &other)
Definition: meanfilter.h:88
MeanSmoothing(int sx=3, int sy=3, int sz=3)
Definition: meanfilter.h:124
MeanFilter< T > * clone() const
ImageAlgorithmInterface<T> Pure virtual method.
Definition: meanfilter.h:67
virtual AimsData< T > doit(const AimsData< T > &in)
Convenience method that execute the algorithm on the input image.
MeanFilter(const StructuringElement &se=strel::Cube(1.0), const carto::Object &options=carto::none())
Definition: meanfilter.h:49
carto::DataTypeTraits< T >::ChannelType ChannelType
Definition: meanfilter.h:74
ElementFilteringImageAlgorithm & operator=(ElementFilteringImageAlgorithm &other)
NotNullMeanFilter(const StructuringElement &se=strel::Cube(1.0), const carto::Object &options=carto::none())
Definition: meanfilter.h:75
virtual ~MeanSmoothing()
Definition: meanfilter.h:129
MeanFilter(const carto::Object &options)
Definition: meanfilter.h:54
Object none()
NotNullMeanFilter(const NotNullMeanFilter< T > &other)
Definition: meanfilter.h:84
MeanFilter(const MeanFilter< T > &other)
Definition: meanfilter.h:58
NotNullMeanFilter< T > * clone() const
ImageAlgorithmInterface<T> Pure virtual method.
Definition: meanfilter.h:93
virtual void execute(const carto::VolumeRef< T > &in, carto::VolumeRef< T > &out) const
ImageAlgorithmInterface<T> Pure virtual method.