//===== // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost) //===== #ifndef __bbcreaVtkWriteLstImages_h_INCLUDED__ #define __bbcreaVtkWriteLstImages_h_INCLUDED__ #include "bbcreaVtk_EXPORT.h" #include "bbtkAtomicBlackBox.h" #include "iostream" #include #include "vtkImageData.h" namespace bbcreaVtk { class bbcreaVtk_EXPORT WriteLstImages : public bbtk::AtomicBlackBox { BBTK_BLACK_BOX_INTERFACE(WriteLstImages,bbtk::AtomicBlackBox); //===== // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost) //===== BBTK_DECLARE_INPUT(Type,int); BBTK_DECLARE_INPUT(OutputDir,std::string); BBTK_DECLARE_INPUT(LstImages,std::vector< vtkImageData* >); BBTK_DECLARE_INPUT(FileName,std::string); BBTK_DECLARE_INPUT(Compression,bool); // BBTK_DECLARE_OUTPUT(Out,double); BBTK_PROCESS(Process); void Process(); //===== // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost) //===== }; BBTK_BEGIN_DESCRIBE_BLACK_BOX(WriteLstImages,bbtk::AtomicBlackBox); BBTK_NAME("WriteLstImages"); BBTK_AUTHOR("InfoDev"); BBTK_DESCRIPTION("No Description."); BBTK_CATEGORY("empty"); BBTK_INPUT(WriteLstImages,Type,"(default 0) 0:mhd 1:nii",int,""); BBTK_INPUT(WriteLstImages,OutputDir,"Output directory",std::string,""); BBTK_INPUT(WriteLstImages,LstImages,"Lst of images",std::vector< vtkImageData* >,""); BBTK_INPUT(WriteLstImages,FileName,"File name (no extension)",std::string,""); BBTK_INPUT(WriteLstImages,Compression,"(Default false) true/false just for mhd",bool,""); // BBTK_OUTPUT(WriteLstImages,Out,"First output",double,""); BBTK_END_DESCRIBE_BLACK_BOX(WriteLstImages); //===== // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost) //===== } // EO namespace bbcreaVtk #endif // __bbcreaVtkWriteLstImages_h_INCLUDED__