//===== // 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 __bbvtkAutoCrop_h_INCLUDED__ #define __bbvtkAutoCrop_h_INCLUDED__ #include "bbvtk_EXPORT.h" #include "bbtkAtomicBlackBox.h" #include "iostream" #include "vtkImageData.h" namespace bbvtk { class bbvtk_EXPORT AutoCrop : public bbtk::AtomicBlackBox { BBTK_BLACK_BOX_INTERFACE(AutoCrop,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(In,vtkImageData*); BBTK_DECLARE_INPUT(Type,int); BBTK_DECLARE_OUTPUT(Out,vtkImageData*); BBTK_PROCESS(Process); void Process(); vtkImageData *_newImage; //===== // 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(AutoCrop,bbtk::AtomicBlackBox); BBTK_NAME("AutoCrop"); BBTK_AUTHOR("Info-Dev"); BBTK_DESCRIPTION("Automatique cropping of the image"); BBTK_CATEGORY("Filter"); BBTK_INPUT(AutoCrop,In,"Input image",vtkImageData*,""); BBTK_INPUT(AutoCrop,Type,"Type of cropping (default 0) 0=power of two dimensions",int,""); BBTK_OUTPUT(AutoCrop,Out,"Output image",vtkImageData*,""); BBTK_END_DESCRIBE_BLACK_BOX(AutoCrop); //===== // 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 bbvtk #endif // __bbvtkAutoCrop_h_INCLUDED__