]> Creatis software - creaRigidRegistration.git/blob - PackRecalage/src/bbPackRecalageImageSwitcherFilter.h
2020 Feature Comparing Images in XY XZ YZ planes
[creaRigidRegistration.git] / PackRecalage / src / bbPackRecalageImageSwitcherFilter.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 __bbPackRecalageImageSwitcherFilter_h_INCLUDED__
5 #define __bbPackRecalageImageSwitcherFilter_h_INCLUDED__
6 #include "bbPackRecalage_EXPORT.h"
7 #include "bbtkAtomicBlackBox.h"
8 #include "iostream"
9
10 #include "vtkImageData.h"
11
12 namespace bbPackRecalage
13 {
14
15 class bbPackRecalage_EXPORT ImageSwitcherFilter
16  : 
17    public bbtk::AtomicBlackBox
18 {
19   BBTK_BLACK_BOX_INTERFACE(ImageSwitcherFilter,bbtk::AtomicBlackBox);
20 //===== 
21 // 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)
22 //===== 
23   BBTK_DECLARE_INPUT(In1,vtkImageData*);
24   BBTK_DECLARE_INPUT(In2,vtkImageData*);
25   BBTK_DECLARE_OUTPUT(Out,vtkImageData*);
26   BBTK_PROCESS(Process);
27   void Process();
28 //===== 
29 // 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)
30 //===== 
31
32   int flag;
33 };
34
35 BBTK_BEGIN_DESCRIBE_BLACK_BOX(ImageSwitcherFilter,bbtk::AtomicBlackBox);
36 BBTK_NAME("ImageSwitcherFilter");
37 BBTK_AUTHOR("Info-Dev");
38 BBTK_DESCRIPTION("Switch image between In1 and In2");
39 BBTK_CATEGORY("empty");
40 BBTK_INPUT(ImageSwitcherFilter,In1,"Input image 1",vtkImageData*,"");
41 BBTK_INPUT(ImageSwitcherFilter,In2,"Input image 2",vtkImageData*,"");
42 BBTK_OUTPUT(ImageSwitcherFilter,Out,"Output image",vtkImageData*,"");
43 BBTK_END_DESCRIBE_BLACK_BOX(ImageSwitcherFilter);
44 //===== 
45 // 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)
46 //===== 
47 }
48 // EO namespace bbPackRecalage
49
50 #endif // __bbPackRecalageImageSwitcherFilter_h_INCLUDED__
51