//===== // 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 __bbcreaVtkLstOfVoxels_h_INCLUDED__ #define __bbcreaVtkLstOfVoxels_h_INCLUDED__ #include "bbcreaVtk_EXPORT.h" #include "bbtkAtomicBlackBox.h" #include "iostream" #include "vector" #include "vtkImageData.h" namespace bbcreaVtk { class bbcreaVtk_EXPORT LstOfVoxels : public bbtk::AtomicBlackBox { BBTK_BLACK_BOX_INTERFACE(LstOfVoxels,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(Range,std::vector); BBTK_DECLARE_OUTPUT(LstX,std::vector); BBTK_DECLARE_OUTPUT(LstY,std::vector); BBTK_DECLARE_OUTPUT(LstZ,std::vector); BBTK_DECLARE_OUTPUT(LstValues,std::vector); 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(LstOfVoxels,bbtk::AtomicBlackBox); BBTK_NAME("LstOfVoxels"); BBTK_AUTHOR("InfoDev"); BBTK_DESCRIPTION("No Description."); BBTK_CATEGORY("empty"); BBTK_INPUT(LstOfVoxels,In,"Input image",vtkImageData*,""); BBTK_INPUT(LstOfVoxels,Range,"Threshold [Min Max]",std::vector,""); BBTK_OUTPUT(LstOfVoxels,LstX,"List of x points",std::vector,""); BBTK_OUTPUT(LstOfVoxels,LstY,"List of y points",std::vector,""); BBTK_OUTPUT(LstOfVoxels,LstZ,"List of z points",std::vector,""); BBTK_OUTPUT(LstOfVoxels,LstValues,"List of z points",std::vector,""); BBTK_END_DESCRIBE_BLACK_BOX(LstOfVoxels); //===== // 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 // __bbcreaVtkLstOfVoxels_h_INCLUDED__