]> Creatis software - FrontAlgorithms.git/blobdiff - lib/fpa/Image/Skeleton.h
...
[FrontAlgorithms.git] / lib / fpa / Image / Skeleton.h
diff --git a/lib/fpa/Image/Skeleton.h b/lib/fpa/Image/Skeleton.h
deleted file mode 100644 (file)
index 4942702..0000000
+++ /dev/null
@@ -1,67 +0,0 @@
-// =========================================================================
-// @author Leonardo Florez Valencia
-// @email florez-l@javeriana.edu.co
-// =========================================================================
-
-#ifndef __fpa__Image__Skeleton__h__
-#define __fpa__Image__Skeleton__h__
-
-#include <vector>
-#include <fpa/Base/Graph.h>
-#include <fpa/Image/PolyLineParametricPath.h>
-
-namespace fpa
-{
-  namespace Image
-  {
-    /**
-     */
-    template< unsigned int _VDim >
-    class Skeleton
-      : public fpa::Base::Graph< typename fpa::Image::PolyLineParametricPath< _VDim >::TIndex, typename fpa::Image::PolyLineParametricPath< _VDim >::Pointer, typename fpa::Image::PolyLineParametricPath< _VDim >::TIndex, typename fpa::Image::PolyLineParametricPath< _VDim >::TIndex::LexicographicCompare >
-    {
-    public:
-      typedef fpa::Image::PolyLineParametricPath< _VDim > TPath;
-      typedef typename TPath::TIndex                     TIndex;
-      typedef typename TIndex::LexicographicCompare      TIndexCompare;
-      typedef typename TPath::Pointer                    TPathPointer;
-
-      itkStaticConstMacro( Dimension, unsigned int, _VDim );
-
-      typedef fpa::Base::Graph< TIndex, TPathPointer, TIndex, TIndexCompare > Superclass;
-      typedef Skeleton                        Self;
-      typedef itk::SmartPointer< Self >       Pointer;
-      typedef itk::SmartPointer< const Self > ConstPointer;
-
-    public:
-      itkNewMacro( Self );
-      itkTypeMacro( Skeleton, fpa::Image::Graph );
-
-    public:
-      void AddBranch( TPath* path );
-      const TPath* GetBranch( const TIndex& a, const TIndex& b ) const;
-
-      std::vector< TIndex > GetEndPoints( ) const;
-      std::vector< TIndex > GetBifurcations( ) const;
-
-    protected:
-      Skeleton( );
-      virtual ~Skeleton( );
-
-    private:
-      // Purposely not implemented
-      Skeleton( const Self& other );
-      Self& operator=( const Self& other );
-    };
-
-  } // ecapseman
-
-} // ecapseman
-
-#ifndef ITK_MANUAL_INSTANTIATION
-#  include <fpa/Image/Skeleton.hxx>
-#endif // ITK_MANUAL_INSTANTIATION
-
-#endif // __fpa__Image__Skeleton__h__
-
-// eof - $RCSfile$