X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2Ffpa%2FImage%2FFunctors%2FRegionGrowBinaryThreshold.h;fp=lib%2Ffpa%2FImage%2FFunctors%2FRegionGrowBinaryThreshold.h;h=0000000000000000000000000000000000000000;hb=6585142e69f2ff5e4fceb21320ab3795c3e82218;hp=201e3d87375c225f3f558052f65a6c7ad0eb1489;hpb=91510d06bf1895f684f9f2f6508ab7d97154576d;p=FrontAlgorithms.git diff --git a/lib/fpa/Image/Functors/RegionGrowBinaryThreshold.h b/lib/fpa/Image/Functors/RegionGrowBinaryThreshold.h deleted file mode 100644 index 201e3d8..0000000 --- a/lib/fpa/Image/Functors/RegionGrowBinaryThreshold.h +++ /dev/null @@ -1,70 +0,0 @@ -#ifndef __fpa__Image__Functors__RegionGrowBinaryThreshold__h__ -#define __fpa__Image__Functors__RegionGrowBinaryThreshold__h__ - -#include -#include - -namespace fpa -{ - namespace Image - { - namespace Functors - { - /** - */ - template< class _TImage > - class RegionGrowBinaryThreshold - : public fpa::Image::Functors::Base< _TImage, fpa::Base::RegionGrowFunctionBase< typename _TImage::IndexType > > - { - public: - typedef _TImage TImage; - typedef typename TImage::IndexType TIndex; - typedef typename TImage::PixelType TPixel; - - typedef fpa::Base::RegionGrowFunctionBase< TIndex > TBaseFunctor; - typedef fpa::Image::Functors::Base< TImage, TBaseFunctor > Superclass; - typedef RegionGrowBinaryThreshold Self; - typedef itk::SmartPointer< Self > Pointer; - typedef itk::SmartPointer< const Self > ConstPointer; - - public: - itkNewMacro( Self ); - itkTypeMacro( RegionGrowBinaryThreshold, Base ); - - itkGetConstMacro( LowerThreshold, TPixel ); - itkGetConstMacro( UpperThreshold, TPixel ); - itkSetMacro( LowerThreshold, TPixel ); - itkSetMacro( UpperThreshold, TPixel ); - - public: - virtual bool Evaluate( - const TIndex& a, const TIndex& b - ) const fpa_OVERRIDE; - - protected: - RegionGrowBinaryThreshold( ); - virtual ~RegionGrowBinaryThreshold( ); - - private: - // Purposely not implemented - RegionGrowBinaryThreshold( const Self& other ); - Self& operator=( const Self& other ); - - protected: - TPixel m_LowerThreshold; - TPixel m_UpperThreshold; - }; - - } // ecapseman - - } // ecapseman - -} // ecapseman - -#ifndef ITK_MANUAL_INSTANTIATION -# include -#endif // ITK_MANUAL_INSTANTIATION - -#endif // __fpa__Image__Functors__RegionGrowBinaryThreshold__h__ - -// eof - $RCSfile$