]> Creatis software - creaMaracasVisu.git/blob - bbtk/src/bbcreaMaracasVisuSurfaceRendering.h
7cf19dd47685f4b81567b75e80e2a70657f6fea3
[creaMaracasVisu.git] / bbtk / src / bbcreaMaracasVisuSurfaceRendering.h
1 #ifdef _USE_WXWIDGETS_
2 #ifndef __bbcreaMaracasVisuSurfaceRendering_h_INCLUDED__
3 #define __bbcreaMaracasVisuSurfaceRendering_h_INCLUDED__
4 #include "bbcreaMaracasVisu_EXPORT.h"
5 #include "bbtkWxBlackBox.h"
6
7 #include "vtkImageData.h"
8 #include "vtkProp3D.h"
9
10 //#include "marInterface.h"
11
12 namespace bbcreaMaracasVisu
13 {
14
15 class bbcreaMaracasVisu_EXPORT SurfaceRendering
16  : 
17    public bbtk::WxBlackBox
18 {
19   BBTK_BLACK_BOX_INTERFACE(SurfaceRendering,bbtk::WxBlackBox);
20   //BBTK_DECLARE_INPUT(In,vtkImageData*);
21   BBTK_DECLARE_INPUT(Renderer,vtkRenderer*);
22   BBTK_DECLARE_INPUT(In0,vtkImageData*);  
23   BBTK_DECLARE_INPUT(In1,vtkImageData*);
24   BBTK_DECLARE_INPUT(In2,vtkImageData*);
25   BBTK_DECLARE_INPUT(In3,vtkImageData*);
26   BBTK_DECLARE_INPUT(In4,vtkImageData*);
27   BBTK_DECLARE_OUTPUT(Out1,vtkImageData*);
28   BBTK_DECLARE_OUTPUT(Out2,vtkImageData*);
29   BBTK_DECLARE_OUTPUT(Out3,vtkImageData*);
30   BBTK_DECLARE_OUTPUT(Out4,vtkImageData*);
31   BBTK_PROCESS(Process);
32   void Process();
33   BBTK_CREATE_WIDGET(CreateWidget);
34   void CreateWidget(wxWindow*);
35
36 private:
37         //marInterface* mar;
38 };
39
40 BBTK_BEGIN_DESCRIBE_BLACK_BOX(SurfaceRendering,bbtk::WxBlackBox);
41 BBTK_NAME("SurfaceRendering");
42 BBTK_AUTHOR("car-prie@uniandes.edu.co");
43 BBTK_DESCRIPTION("BB of the module SurfaceRendering");
44 BBTK_CATEGORY("__CategoryBlackBox__");
45 //BBTK_INPUT(SurfaceRendering,In,"Renderer to show the different prop3D",vtkImageData*,"");
46 BBTK_INPUT(SurfaceRendering,Renderer,"Renderer to show the different prop3D",vtkRenderer*,"");
47 BBTK_INPUT(SurfaceRendering,In0,"Input image to the SurfaceRendering",vtkImageData*,"");
48 BBTK_INPUT(SurfaceRendering,In1,"Input image to the SurfaceRendering",vtkImageData*,"");
49 BBTK_INPUT(SurfaceRendering,In2,"Input image to the SurfaceRendering",vtkImageData*,"");
50 BBTK_INPUT(SurfaceRendering,In3,"Input image to the SurfaceRendering",vtkImageData*,"");
51 BBTK_INPUT(SurfaceRendering,In4,"Input image to the SurfaceRendering",vtkImageData*,"");
52 BBTK_OUTPUT(SurfaceRendering,Out1,"Output resulting image",vtkImageData*,"");
53 BBTK_OUTPUT(SurfaceRendering,Out2,"Output resulting image",vtkImageData*,"");
54 BBTK_OUTPUT(SurfaceRendering,Out3,"Output resulting image",vtkImageData*,"");
55 BBTK_OUTPUT(SurfaceRendering,Out4,"Output resulting image",vtkImageData*,"");
56 BBTK_END_DESCRIBE_BLACK_BOX(SurfaceRendering);
57 }
58 // EO namespace bbcreaMaracasVisu
59
60 #endif // __bbcreaMaracasVisuSurfaceRendering_h_INCLUDED__
61 #endif // _USE_WXWIDGETS_
62