//===== // 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 __bbvtkMaskPoint_h_INCLUDED__ #define __bbvtkMaskPoint_h_INCLUDED__ #include "bbvtk_EXPORT.h" #include "bbtkAtomicBlackBox.h" #include "iostream" #include "vtkImageData.h" #include "vtkMaskPoints.h" #include "vtkPolyData.h" namespace bbvtk { class bbvtk_EXPORT MaskPoint : public bbtk::AtomicBlackBox { BBTK_BLACK_BOX_INTERFACE(MaskPoint,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(Ratio,int); BBTK_DECLARE_OUTPUT(Out,vtkPolyData*); BBTK_PROCESS(Process); void Process(); private: vtkMaskPoints *maskpoints; //===== // 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(MaskPoint,bbtk::AtomicBlackBox); BBTK_NAME("MaskPoint"); BBTK_AUTHOR("ED at InfoDev Creatis"); BBTK_DESCRIPTION("vtkMaskPoint"); BBTK_CATEGORY("empty"); BBTK_INPUT(MaskPoint,In,"vtkImageData",vtkImageData*,""); BBTK_INPUT(MaskPoint,Ratio,"Ratio",int,""); BBTK_OUTPUT(MaskPoint,Out,"vtkPolyData",vtkPolyData*,""); BBTK_END_DESCRIBE_BLACK_BOX(MaskPoint); //===== // 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 // __bbvtkMaskPoint_h_INCLUDED__