X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2Ffpa%2FVTK%2FImage%2FSkeletonToPolyDataFilter.h;fp=lib%2Ffpa%2FVTK%2FImage%2FSkeletonToPolyDataFilter.h;h=0000000000000000000000000000000000000000;hb=a8ac405fe1422bc0792a810f7f0693096a22c20e;hp=f34ae2eb6402c09d950aaf6e919ffc3042277ff2;hpb=8abe87eaa0d29ba667d5cbf35f4ca1ca2e38c6c4;p=FrontAlgorithms.git diff --git a/lib/fpa/VTK/Image/SkeletonToPolyDataFilter.h b/lib/fpa/VTK/Image/SkeletonToPolyDataFilter.h deleted file mode 100644 index f34ae2e..0000000 --- a/lib/fpa/VTK/Image/SkeletonToPolyDataFilter.h +++ /dev/null @@ -1,71 +0,0 @@ -// ========================================================================= -// @author Leonardo Florez Valencia -// @email florez-l@javeriana.edu.co -// ========================================================================= -#ifndef __fpa__VTK__Image__SkeletonToPolyDataFilter__h__ -#define __fpa__VTK__Image__SkeletonToPolyDataFilter__h__ - -#include - -namespace fpa -{ - namespace VTK - { - namespace Image - { - /** - */ - template< class _TSkeleton > - class SkeletonToPolyDataFilter - : public vtkPolyDataAlgorithm - { - public: - typedef SkeletonToPolyDataFilter Self; - typedef _TSkeleton TSkeleton; - - public: - vtkTypeMacro( SkeletonToPolyDataFilter, vtkPolyDataAlgorithm ); - - public: - static Self* New( ); - - const TSkeleton* GetInput( ) const; - void SetInput( const TSkeleton* sk ); - - protected: - SkeletonToPolyDataFilter( ); - virtual ~SkeletonToPolyDataFilter( ); - - int RequestData( - vtkInformation* information, - vtkInformationVector** input, - vtkInformationVector* output - ); - int RequestInformation( - vtkInformation* information, - vtkInformationVector** input, - vtkInformationVector* output - ); - - private: - // Purposely not implemented - SkeletonToPolyDataFilter( const Self& ); - void operator=( const Self& ); - - protected: - const TSkeleton* m_Skeleton; - }; - - } // ecapseman - - } // ecapseman - -} // ecapseman - -#ifndef ITK_MANUAL_INSTANTIATION -# include -#endif // ITK_MANUAL_INSTANTIATION - -#endif // __fpa__VTK__Image__SkeletonToPolyDataFilter__h__ - -// eof - $RCSfile$