]> Creatis software - FrontAlgorithms.git/blobdiff - lib/fpa/Image/Functors/Dijkstra/Identity.h
...
[FrontAlgorithms.git] / lib / fpa / Image / Functors / Dijkstra / Identity.h
diff --git a/lib/fpa/Image/Functors/Dijkstra/Identity.h b/lib/fpa/Image/Functors/Dijkstra/Identity.h
deleted file mode 100644 (file)
index 3a0b370..0000000
+++ /dev/null
@@ -1,73 +0,0 @@
-// =========================================================================
-// @author Leonardo Florez Valencia
-// @email florez-l@javeriana.edu.co
-// =========================================================================
-
-#ifndef __fpa__Image__Functors__Dijkstra__Identity__h__
-#define __fpa__Image__Functors__Dijkstra__Identity__h__
-
-#include <fpa/Image/Functors/Dijkstra/Function.h>
-
-namespace fpa
-{
-  namespace Image
-  {
-    namespace Functors
-    {
-      namespace Dijkstra
-      {
-        /**
-         */
-        template< class _TInputImage, class _TOutputValue >
-        class Identity
-          : public fpa::Image::Functors::Dijkstra::Function< _TInputImage, _TOutputValue >
-        {
-        public:
-          typedef Identity Self;
-          typedef fpa::Image::Functors::Dijkstra::Function< _TInputImage, _TOutputValue > Superclass;
-          typedef itk::SmartPointer< Self >       Pointer;
-          typedef itk::SmartPointer< const Self > ConstPointer;
-
-          typedef typename Superclass::TVertex TVertex;
-
-        public:
-          itkNewMacro( Self );
-          itkTypeMacro(
-            fpa::Image::Functors::Dijkstra::Identity,
-            fpa::Image::Functors::Dijkstra::Function
-            );
-
-        public:
-          virtual _TOutputValue Evaluate(
-            const TVertex& v, const TVertex& p
-            ) const override
-            {
-              return( _TOutputValue( this->m_Image->GetPixel( v ) ) );
-            }
-
-        protected:
-          Identity( )
-            : Superclass( )
-            {
-            }
-          virtual ~Identity( )
-            {
-            }
-
-        private:
-          // Purposely not implemented
-          Identity( const Self& other );
-          Self& operator=( const Self& other );
-        };
-
-      } // ecapseman
-
-    } // ecapseman
-
-  } // ecapseman
-
-} // ecapseman
-
-#endif // __fpa__Image__Functors__Dijkstra__Identity__h__
-
-// eof - $RCSfile$