]> Creatis software - FrontAlgorithms.git/blobdiff - lib/fpa/Filters/Image/RegionGrow.h
...
[FrontAlgorithms.git] / lib / fpa / Filters / Image / RegionGrow.h
diff --git a/lib/fpa/Filters/Image/RegionGrow.h b/lib/fpa/Filters/Image/RegionGrow.h
new file mode 100644 (file)
index 0000000..0d3a6b4
--- /dev/null
@@ -0,0 +1,57 @@
+// =========================================================================
+// @author Leonardo Florez Valencia
+// @email florez-l@javeriana.edu.co
+// =========================================================================
+#ifndef __fpa__Filters__Image__RegionGrow__h__
+#define __fpa__Filters__Image__RegionGrow__h__
+
+#include <fpa/Filters/RegionGrow.h>
+#include <fpa/Filters/Image/DefaultTraits.h>
+#include <fpa/Filters/Image/Interface.h>
+
+namespace fpa
+{
+  namespace Filters
+  {
+    namespace Image
+    {
+      /**
+       */
+      template< class _TInputImage, class _TOutputImage, class _TMark = unsigned char, class _TTraits = fpa::Filters::Image::DefaultTraits< _TInputImage, _TOutputImage, _TMark > >
+      class RegionGrow
+        : public fpa::Filters::RegionGrow< fpa::Filters::Image::Interface< _TTraits > >
+      {
+      public:
+        typedef _TTraits TTraits;
+
+        typedef fpa::Filters::Image::Interface< TTraits > TInterface;
+        typedef fpa::Filters::RegionGrow< TInterface >    Superclass;
+        typedef RegionGrow                                Self;
+        typedef itk::SmartPointer< Self >                 Pointer;
+        typedef itk::SmartPointer< const Self >           ConstPointer;
+
+      public:
+        itkNewMacro( Self );
+
+      protected:
+        RegionGrow( )
+          : Superclass( )
+          {
+          }
+        virtual ~RegionGrow( )
+          {
+          }
+
+      private:
+        RegionGrow( const Self& other );
+        Self& operator=( const Self& other );
+      };
+
+    } // ecapseman
+
+  } // ecapseman
+
+} // ecapseman
+
+#endif // __fpa__Filters__Image__RegionGrow__h__
+// eof - $RCSfile$