]> Creatis software - bbtk.git/blob - packages/vtk/src/bbvtkTemporalPicker.h
1500 Feature
[bbtk.git] / packages / vtk / src / bbvtkTemporalPicker.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 __bbvtkTemporalPicker_h_INCLUDED__
5 #define __bbvtkTemporalPicker_h_INCLUDED__
6 #include "bbvtk_EXPORT.h"
7 #include "bbtkAtomicBlackBox.h"
8 #include "iostream"
9
10 #include "vtkImageData.h"
11
12
13 namespace bbvtk
14 {
15
16 class bbvtk_EXPORT TemporalPicker
17  : 
18    public bbtk::AtomicBlackBox
19 {
20   BBTK_BLACK_BOX_INTERFACE(TemporalPicker,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(In,vtkImageData*);
25     BBTK_DECLARE_INPUT(SizeRegion,int);
26     BBTK_DECLARE_INPUT(Point,std::vector<int>);
27         BBTK_DECLARE_OUTPUT(Out,std::vector<double>);
28   BBTK_PROCESS(Process);
29   void Process();
30 //===== 
31 // 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)
32 //===== 
33 };
34
35 BBTK_BEGIN_DESCRIBE_BLACK_BOX(TemporalPicker,bbtk::AtomicBlackBox);
36         BBTK_NAME("TemporalPicker");
37         BBTK_AUTHOR("Info-Dev");
38         BBTK_DESCRIPTION("Pick vector in Z direction");
39         BBTK_CATEGORY("");
40         BBTK_INPUT(TemporalPicker,In,"Input image",vtkImageData*,"");
41         BBTK_INPUT(TemporalPicker,SizeRegion,"Size region (default 1)",int,"");
42         BBTK_INPUT(TemporalPicker,Point,"Point [x,y]",std::vector<int>,"");
43         BBTK_OUTPUT(TemporalPicker,Out,"Output vector with Z information",std::vector<double>,"");
44 BBTK_END_DESCRIBE_BLACK_BOX(TemporalPicker);
45 //===== 
46 // 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)
47 //===== 
48 }
49 // EO namespace bbvtk
50
51 #endif // __bbvtkTemporalPicker_h_INCLUDED__
52
53