//===== // 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 __bbcreaVtkLineProfile_h_INCLUDED__ #define __bbcreaVtkLineProfile_h_INCLUDED__ #include "bbcreaVtk_EXPORT.h" #include "bbtkAtomicBlackBox.h" #include "iostream" #include "vtkImageData.h" namespace bbcreaVtk { class bbcreaVtk_EXPORT LineProfile : public bbtk::AtomicBlackBox { BBTK_BLACK_BOX_INTERFACE(LineProfile,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(Point1,std::vector); BBTK_DECLARE_INPUT(Point2,std::vector); BBTK_DECLARE_OUTPUT(Out,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(LineProfile,bbtk::AtomicBlackBox); BBTK_NAME("LineProfile"); BBTK_AUTHOR("Info-Dev Creatis"); BBTK_DESCRIPTION("Line Profile"); BBTK_CATEGORY("filter"); BBTK_INPUT(LineProfile,In,"Input image",vtkImageData*,""); BBTK_INPUT(LineProfile,Point1,"Vector [x y z]",std::vector,""); BBTK_INPUT(LineProfile,Point2,"Vector [x y z]",std::vector,""); BBTK_OUTPUT(LineProfile,Out,"Profile in gray level of the points of the segment",std::vector,""); BBTK_END_DESCRIBE_BLACK_BOX(LineProfile); //===== // 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 // __bbcreaVtkLineProfile_h_INCLUDED__