/*========================================================================= Program: bbtk Module: $RCSfile: bbitkImageWriter.h,v $ Language: C++ Date: $Date: 2008/04/18 12:59:50 $ Version: $Revision: 1.5 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or http://www.creatis.insa-lyon.fr/Public/bbtk/License.html for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notices for more information. =========================================================================*//** /** * \file * \brief class ITKImageWriter : generic ITKImage reader */ /** * \class bbtk::ITKImageWriter * \brief Generic ITKImage reader */ #ifdef _USE_ITK_ #ifndef __bbtkITKImageWriter_h__ #define __bbtkITKImageWriter_h__ #include "bbtkAtomicBlackBox.h" #include "bbitkImage.h" namespace bbitk { //================================================================= // BlackBox declaration class ImageWriter : public bbtk::AtomicBlackBox { BBTK_BLACK_BOX_INTERFACE(ImageWriter, bbtk::AtomicBlackBox); BBTK_DECLARE_INPUT(Filename,std::string); BBTK_DECLARE_INPUT(In,anyImagePointer); BBTK_PROCESS(Write); void Write(); private: // Template write method template void Write(); }; //================================================================= // BlackBox description BBTK_BEGIN_DESCRIBE_BLACK_BOX(ImageWriter,bbtk::AtomicBlackBox); BBTK_NAME("ImageWriter"); BBTK_AUTHOR("laurent.guigues at creatis.insa-lyon.fr"); BBTK_DESCRIPTION("Generic itk image writer"); BBTK_CATEGORY("image;read/write"); BBTK_INPUT(ImageWriter,Filename, "filename with complete path",std::string,"file name"); BBTK_INPUT(ImageWriter,In,"Image to write",anyImagePointer,""); BBTK_END_DESCRIBE_BLACK_BOX(ImageWriter); //================================================================= } //namespace bbitk #endif #endif // _USE_ITK_