]> Creatis software - FrontAlgorithms.git/blobdiff - lib/fpa/Image/Functors/SimpleNeighborhood.h
...
[FrontAlgorithms.git] / lib / fpa / Image / Functors / SimpleNeighborhood.h
diff --git a/lib/fpa/Image/Functors/SimpleNeighborhood.h b/lib/fpa/Image/Functors/SimpleNeighborhood.h
deleted file mode 100644 (file)
index 0e4ebf7..0000000
+++ /dev/null
@@ -1,71 +0,0 @@
-#ifndef __fpa__Image__Functors__SimpleNeighborhood__h__
-#define __fpa__Image__Functors__SimpleNeighborhood__h__
-
-#include <vector>
-#include <fpa/Image/Functors/Base.h>
-#include <itkFunctionBase.h>
-#include <itkImageBase.h>
-
-namespace fpa
-{
-  namespace Image
-  {
-    namespace Functors
-    {
-      /**
-       */
-      template< unsigned int _VDim >
-      class SimpleNeighborhood
-        : public fpa::Image::Functors::Base< itk::ImageBase< _VDim >, itk::FunctionBase< itk::Index< _VDim >, std::vector< itk::Index< _VDim > > > >
-      {
-      public:
-        typedef itk::ImageBase< _VDim >         TImage;
-        typedef typename TImage::IndexType      TIndex;
-        typedef typename TIndex::OffsetType     TOffset;
-        typedef std::vector< TIndex >           TOutput;
-        typedef itk::FunctionBase< TIndex, TOutput > TBaseFunctor;
-        typedef fpa::Image::Functors::Base< TImage, TBaseFunctor > Superclass;
-        typedef SimpleNeighborhood              Self;
-        typedef itk::SmartPointer< Self >       Pointer;
-        typedef itk::SmartPointer< const Self > ConstPointer;
-
-      public:
-        itkNewMacro( Self );
-        itkTypeMacro( SimpleNeighborhood, Base );
-
-        itkGetConstMacro( Order, unsigned int );
-        itkSetMacro( Order, unsigned int );
-
-      public:
-        virtual TOutput Evaluate( const TIndex& center ) const override;
-
-      protected:
-        SimpleNeighborhood( );
-        virtual ~SimpleNeighborhood( );
-
-        void _1stCombination( ) const;
-        void _2ndCombination( ) const;
-
-      private:
-        // Purposely not implemented
-        SimpleNeighborhood( const Self& other );
-        Self& operator=( const Self& other );
-
-      protected:
-        unsigned int m_Order;
-        mutable std::vector< TOffset > m_Offsets;
-      };
-
-    } // ecapseman
-
-  } // ecapseman
-
-} // ecapseman
-
-#ifndef ITK_MANUAL_INSTANTIATION
-#  include <fpa/Image/Functors/SimpleNeighborhood.hxx>
-#endif // ITK_MANUAL_INSTANTIATION
-
-#endif // __fpa__Image__Functors__SimpleNeighborhood__h__
-
-// eof - $RCSfile$