00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 #ifndef IMG_ALG_FILTER_GAUSSIAN_H
00031
00032 #define IMG_ALG_FILTER_GAUSSIAN_H
00033
00034
00035
00036 #include <ost/img/algorithm.hh>
00037
00038 #include <ost/img/image_state.hh>
00039
00040 #include <ost/img/image_state/image_state_visitor.hh>
00041
00042 #include <ost/message.hh>
00043
00044
00045
00046 #include <ost/dllexport.hh>
00047
00048 #include "line_iterator.hh"
00049
00050
00051
00052 namespace ost { namespace img { namespace alg {
00053
00054
00055
00057
00070 class DLLEXPORT_IMG_ALG GaussianFilterBase
00071
00072 {
00073
00074 public:
00075
00077
00078 GaussianFilterBase(Real sigma=1.0);
00079
00080
00081
00082 template <typename T, class D>
00083
00084 void VisitState(ImageStateImpl<T,D>& s);
00085
00086
00087
00089
00090 void SetSigma(Real sigma) {
00091
00092 calcBVals( calcQ(sigma) );
00093
00094 }
00095
00097
00098 void SetQ(Real q) {
00099
00100 calcBVals( q );
00101
00102 }
00103
00104 static String GetAlgorithmName() {return "GaussianFilter";}
00105
00106 protected:
00107
00108 Real b0_, b1_, b2_, b3_, bb_;
00109
00110
00111
00112 private:
00113
00114 Real calcQ( Real sigma );
00115
00116 void calcBVals( Real q );
00117
00118
00119
00120 template <typename T, class D>
00121
00122 void lineTransformFW(ImageStateImpl<T,D>& s, ExtentIterator& it);
00123
00124
00125
00126 template <typename T, class D>
00127
00128 void lineTransformBW(ImageStateImpl<T,D>& s, ExtentIterator& it);
00129
00130 };
00131
00132
00133
00134 typedef ImageStateModIPAlgorithm<GaussianFilterBase> GaussianFilter;
00135
00136
00137
00138 }
00139
00140
00141
00142 OST_IMG_ALG_EXPLICIT_INST_DECL(class, ImageStateModIPAlgorithm<alg::GaussianFilterBase>)
00143
00144
00145
00146 }}
00147
00148
00149
00150 #endif
00151