X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FcpExtensions%2FAlgorithms%2FImageBlender.h;fp=lib%2FcpExtensions%2FAlgorithms%2FImageBlender.h;h=0000000000000000000000000000000000000000;hb=2e142df11d6f312a2a2b5097b8da73571ed523e8;hp=4d82bcf42f99a97227f37e4224c06dc803ea2cae;hpb=61b3659afe961ed248f30e26f9ca8f28fcfafddc;p=cpPlugins.git diff --git a/lib/cpExtensions/Algorithms/ImageBlender.h b/lib/cpExtensions/Algorithms/ImageBlender.h deleted file mode 100644 index 4d82bcf..0000000 --- a/lib/cpExtensions/Algorithms/ImageBlender.h +++ /dev/null @@ -1,65 +0,0 @@ -#ifndef __cpExtensions__Algorithms__ImageBlender__h__ -#define __cpExtensions__Algorithms__ImageBlender__h__ - -#include -#include -#include - -namespace cpExtensions -{ - namespace Algorithms - { - /** - * @note: Based on vtkImageWeightedSum - */ - class cpExtensions_EXPORT ImageBlender - : public vtkThreadedImageAlgorithm - { - public: - typedef ImageBlender Self; - vtkTypeMacro( ImageBlender, vtkThreadedImageAlgorithm ); - - public: - static Self* New( ); - - unsigned int GetNumberOfInputs( ); - - protected: - ImageBlender( ); - virtual ~ImageBlender( ); - - int RequestInformation( - vtkInformation* request, - vtkInformationVector** inputVector, - vtkInformationVector* outputVector - ); - int RequestData( - vtkInformation* request, - vtkInformationVector** inputVector, - vtkInformationVector* outputVector - ); - void ThreadedRequestData( - vtkInformation* request, - vtkInformationVector** inputVector, - vtkInformationVector* outputVector, - vtkImageData*** inData, vtkImageData** outData, - int outExt[ 6 ], int id - ); - int FillInputPortInformation( int i, vtkInformation* info ); - - private: - // Purposely not implemented. - ImageBlender( const Self& other ); - void operator=( const Self& other ); - - protected: - std::vector< double > m_Ranges; - }; - - } // ecapseman - -} // ecapseman - -#endif // __cpExtensions__Algorithms__ImageBlender__h__ - -// eof - $RCSfile$