]> Creatis software - creaRigidRegistration.git/blob - PackRecalage/src/bbPackRecalageDuplicateImageBox.h
ec8e0b4a9201fd965438b23c0a5c0340fdcb74be
[creaRigidRegistration.git] / PackRecalage / src / bbPackRecalageDuplicateImageBox.h
1 #ifndef __bbPackRecalageDuplicateImageBox_h_INCLUDED__
2 #define __bbPackRecalageDuplicateImageBox_h_INCLUDED__
3 #include "bbPackRecalage_EXPORT.h"
4 #include "bbtkAtomicBlackBox.h"
5 #include "iostream"
6
7 #include "vtkImageData.h"
8
9 namespace bbPackRecalage
10 {
11
12 class bbPackRecalage_EXPORT DuplicateImageBox
13  : 
14    public bbtk::AtomicBlackBox
15 {
16   BBTK_BLACK_BOX_INTERFACE(DuplicateImageBox,bbtk::AtomicBlackBox);
17   BBTK_DECLARE_INPUT(In,vtkImageData*);
18   BBTK_DECLARE_OUTPUT(Out,vtkImageData*);
19   BBTK_PROCESS(Process);
20   void Process();
21 };
22
23 BBTK_BEGIN_DESCRIBE_BLACK_BOX(DuplicateImageBox,bbtk::AtomicBlackBox);
24 BBTK_NAME("DuplicateImageBox");
25 BBTK_AUTHOR("jn.trillos44@uniandes.edu.co");
26 BBTK_DESCRIPTION("Creates a shallow copy of its image input");
27 BBTK_CATEGORY("__CATEGORY__");
28 BBTK_INPUT(DuplicateImageBox,In,"Original Image",vtkImageData*,"");
29 BBTK_OUTPUT(DuplicateImageBox,Out,"Duplicated Image",vtkImageData*,"");
30 BBTK_END_DESCRIBE_BLACK_BOX(DuplicateImageBox);
31 }
32 // EO namespace bbPackRecalage
33
34 #endif // __bbPackRecalageDuplicateImageBox_h_INCLUDED__
35