Go to the documentation of this file.00001 #ifndef vipl_erode_disk_h_
00002 #define vipl_erode_disk_h_
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
00031
00032
00033
00034
00035 #include <vipl/filter/vipl_filter_2d.h>
00036
00037
00038 template <class ImgIn,class ImgOut,class DataIn,class DataOut,VCL_DFL_TYPE_PARAM_STLDECL(PixelItr, vipl_trivial_pixeliter) >
00039 class vipl_erode_disk : public vipl_filter_2d<ImgIn,ImgOut,DataIn,DataOut,PixelItr>
00040 {
00041
00042 private:
00043 float radius_;
00044 float& ref_radius() { return radius_; }
00045 void put_radius(float v) { radius_=v; }
00046 public:
00047 float radius() const { return radius_; }
00048
00049 private:
00050
00051 bool** mask_;
00052 bool**& ref_mask() { return mask_; }
00053 void put_mask(bool** v) { mask_=v; }
00054 bool** mask() const { return mask_; }
00055
00056
00057 public:
00058 inline vipl_erode_disk(float r=1)
00059 : vipl_filter_2d<ImgIn,ImgOut,DataIn,DataOut,PixelItr>(), radius_(r), mask_(0){}
00060 inline vipl_erode_disk(vipl_erode_disk const& A)
00061 : vipl_filter_2d<ImgIn,ImgOut,DataIn,DataOut,PixelItr>(A), radius_(A.radius()), mask_(0) {}
00062 inline ~vipl_erode_disk() {}
00063
00064
00065 bool section_applyop();
00066
00067 bool preop();
00068 bool postop();
00069 };
00070
00071 #ifdef INSTANTIATE_TEMPLATES
00072 #include "vipl_erode_disk.txx"
00073 #endif
00074
00075 #endif // vipl_erode_disk_h_