]> Creatis software - creaVtk.git/blob - bbtk_creaVtk_PKG/src/bbcreaVtkImageContinuousDilate3D.h
2426 creaVtk Feature New Normal New Black Box vtkImageContinuousDilate3D with repetit...
[creaVtk.git] / bbtk_creaVtk_PKG / src / bbcreaVtkImageContinuousDilate3D.h
1 //===== 
2 // 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)
3 //===== 
4 #ifndef __bbcreaVtkImageContinuousDilate3D_h_INCLUDED__
5 #define __bbcreaVtkImageContinuousDilate3D_h_INCLUDED__
6 #include "bbcreaVtk_EXPORT.h"
7 #include "bbtkAtomicBlackBox.h"
8 #include "iostream"
9 #include "vtkImageData.h"
10 #include "vtkImageContinuousDilate3D.h"
11 #include "vtkSmartPointer.h"
12
13 namespace bbcreaVtk
14 {
15
16 class bbcreaVtk_EXPORT ImageContinuousDilate3D
17  : 
18    public bbtk::AtomicBlackBox
19 {
20   BBTK_BLACK_BOX_INTERFACE(ImageContinuousDilate3D,bbtk::AtomicBlackBox);
21 //===== 
22 // 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)
23 //===== 
24   BBTK_DECLARE_INPUT(X,double);
25   BBTK_DECLARE_INPUT(Y,double);
26   BBTK_DECLARE_INPUT(Z,double);
27   BBTK_DECLARE_INPUT(Repetitions,int);
28   BBTK_DECLARE_INPUT(Image,vtkImageData*);
29   BBTK_DECLARE_OUTPUT(Out,vtkImageData*);
30   BBTK_PROCESS(Process);
31   void Process();
32         vtkImageData* dilateFilterRecursive(vtkImageData* image, int repetitions, double x, double y, double z);
33 //===== 
34 // 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)
35 //===== 
36 };
37
38 BBTK_BEGIN_DESCRIBE_BLACK_BOX(ImageContinuousDilate3D,bbtk::AtomicBlackBox);
39 BBTK_NAME("ImageContinuousDilate3D");
40 BBTK_AUTHOR("Carlos Torres");
41 BBTK_DESCRIPTION("No Description.");
42 BBTK_CATEGORY("empty");
43 BBTK_INPUT(ImageContinuousDilate3D,X,"X",double,"");
44 BBTK_INPUT(ImageContinuousDilate3D,Y,"Y",double,"");
45 BBTK_INPUT(ImageContinuousDilate3D,Z,"Z",double,"");
46 BBTK_INPUT(ImageContinuousDilate3D,Repetitions,"Repetitions",int,"");
47 BBTK_INPUT(ImageContinuousDilate3D,Image,"Image input",vtkImageData*,"");
48 BBTK_OUTPUT(ImageContinuousDilate3D,Out,"Image output",vtkImageData*,"");
49 BBTK_END_DESCRIBE_BLACK_BOX(ImageContinuousDilate3D);
50 //===== 
51 // 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)
52 //===== 
53 }
54 // EO namespace bbcreaVtk
55
56 #endif // __bbcreaVtkImageContinuousDilate3D_h_INCLUDED__
57