//===== // 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 __bbcreaVtkImageGaussianSmooth2_h_INCLUDED__ #define __bbcreaVtkImageGaussianSmooth2_h_INCLUDED__ #include "bbcreaVtk_EXPORT.h" #include "bbtkAtomicBlackBox.h" #include "iostream" #include "vtkImageData.h" #include "vtkImageGaussianSmooth.h" namespace bbcreaVtk { class bbcreaVtk_EXPORT ImageGaussianSmooth2 : public bbtk::AtomicBlackBox { BBTK_BLACK_BOX_INTERFACE(ImageGaussianSmooth2,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(StdDevX,double); BBTK_DECLARE_INPUT(StdDevY,double); BBTK_DECLARE_INPUT(StdDevZ,double); BBTK_DECLARE_OUTPUT(Out,vtkImageData*); BBTK_PROCESS(Process); void Process(); vtkImageGaussianSmooth *gaussiansmooth; //===== // 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(ImageGaussianSmooth2,bbtk::AtomicBlackBox); BBTK_NAME("ImageGaussianSmooth2"); BBTK_AUTHOR("InfoDev"); BBTK_DESCRIPTION("No Description."); BBTK_CATEGORY("empty"); BBTK_INPUT(ImageGaussianSmooth2,In,"First input",vtkImageData*,""); BBTK_INPUT(ImageGaussianSmooth2,StdDevX,"(default 2) Standard deviation in direction X",double,""); BBTK_INPUT(ImageGaussianSmooth2,StdDevY,"(default 2) Standard deviation in direction Y",double,""); BBTK_INPUT(ImageGaussianSmooth2,StdDevZ,"(default 2) Standard deviation in direction Z",double,""); BBTK_OUTPUT(ImageGaussianSmooth2,Out,"First output",vtkImageData*,""); BBTK_END_DESCRIBE_BLACK_BOX(ImageGaussianSmooth2); //===== // 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 // __bbcreaVtkImageGaussianSmooth2_h_INCLUDED__