X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FcpExtensions%2FVisualization%2FImageIndexesContainerToPolyData.h;fp=lib%2FcpExtensions%2FVisualization%2FImageIndexesContainerToPolyData.h;h=0000000000000000000000000000000000000000;hb=2e142df11d6f312a2a2b5097b8da73571ed523e8;hp=5129512991593317d290b334fe1b0667c3c4157f;hpb=61b3659afe961ed248f30e26f9ca8f28fcfafddc;p=cpPlugins.git diff --git a/lib/cpExtensions/Visualization/ImageIndexesContainerToPolyData.h b/lib/cpExtensions/Visualization/ImageIndexesContainerToPolyData.h deleted file mode 100644 index 5129512..0000000 --- a/lib/cpExtensions/Visualization/ImageIndexesContainerToPolyData.h +++ /dev/null @@ -1,71 +0,0 @@ -#ifndef __CPEXTENSIONS__VISUALIZATION__IMAGEINDEXESCONTAINERTOPOLYDATA__H__ -#define __CPEXTENSIONS__VISUALIZATION__IMAGEINDEXESCONTAINERTOPOLYDATA__H__ - -#include -#include - -namespace cpExtensions -{ - namespace Visualization - { - /** - */ - template< class _TIndexes > - class ImageIndexesContainerToPolyData - : public vtkPolyDataAlgorithm - { - public: - typedef ImageIndexesContainerToPolyData Self; - - typedef _TIndexes TIndexes; - typedef typename TIndexes::ComponentType TContainer; - typedef typename TContainer::value_type TIndex; - typedef itk::ImageBase< TIndex::Dimension > TImage; - - public: - vtkTypeMacro( ImageIndexesContainerToPolyData, vtkPolyDataAlgorithm ); - - public: - static Self* New( ); - - const TIndexes* GetInput( ) const; - const TImage* GetReferenceImage( ) const; - void SetInput( const TIndexes* c ); - void SetReferenceImage( const TImage* i ); - - protected: - ImageIndexesContainerToPolyData( ); - virtual ~ImageIndexesContainerToPolyData( ); - - int RequestData( - vtkInformation* information, - vtkInformationVector** input, - vtkInformationVector* output - ); - int RequestInformation( - vtkInformation* information, - vtkInformationVector** input, - vtkInformationVector* output - ); - - private: - // Purposely not implemented - ImageIndexesContainerToPolyData( const Self& ); - void operator=( const Self& ); - - protected: - const TIndexes* m_Indexes; - const TImage* m_ReferenceImage; - }; - - } // ecapseman - -} // ecapseman - -#ifndef ITK_MANUAL_INSTANTIATION -#include -#endif // ITK_MANUAL_INSTANTIATION - -#endif // __CPEXTENSIONS__VISUALIZATION__IMAGEINDEXESCONTAINERTOPOLYDATA__H__ - -// eof - $RCSfile$