]> Creatis software - creaVtk.git/blob - bbtk_creaVtk_PKG/src/bbcreaVtkDistanceMap.h
#3276 creaVtk Feature New Normal - DistanceMap Box
[creaVtk.git] / bbtk_creaVtk_PKG / src / bbcreaVtkDistanceMap.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 __bbcreaVtkDistanceMap_h_INCLUDED__
5 #define __bbcreaVtkDistanceMap_h_INCLUDED__
6
7 #include "bbcreaVtk_EXPORT.h"
8 #include "bbtkAtomicBlackBox.h"
9 #include "iostream"
10
11 #include "vtkImageData.h"
12
13 namespace bbcreaVtk
14 {
15
16 class bbcreaVtk_EXPORT DistanceMap
17  : 
18    public bbtk::AtomicBlackBox
19 {
20   BBTK_BLACK_BOX_INTERFACE(DistanceMap,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
25   BBTK_DECLARE_INPUT(In,vtkImageData*);
26   BBTK_DECLARE_INPUT(Slope,double);
27   BBTK_DECLARE_INPUT(Point1, std::vector<int>);
28   BBTK_DECLARE_INPUT(Point2, std::vector<int>);
29
30   BBTK_DECLARE_OUTPUT(Out,vtkImageData*);
31   BBTK_DECLARE_OUTPUT(Length, int );
32   BBTK_DECLARE_OUTPUT(FinalPoint,std::vector<int>);
33   BBTK_DECLARE_OUTPUT(LstPathXOut,std::vector<int>);
34   BBTK_DECLARE_OUTPUT(LstPathYOut,std::vector<int>);
35   BBTK_DECLARE_OUTPUT(LstPathZOut,std::vector<int>);
36
37   BBTK_PROCESS(Process);
38   void Process();
39
40   vtkImageData* imageoutput;
41
42 //===== 
43 // 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)
44 //===== 
45 };
46
47 BBTK_BEGIN_DESCRIBE_BLACK_BOX(DistanceMap,bbtk::AtomicBlackBox);
48   BBTK_NAME("DistanceMap");
49   BBTK_AUTHOR("InfoDev");
50   BBTK_DESCRIPTION("Normaly mask or mask[0 255] + gaussian[5]");
51   BBTK_CATEGORY("empty");
52
53     BBTK_INPUT(DistanceMap,In,"Input image",vtkImageData*,"");
54     BBTK_INPUT(DistanceMap,Slope,"(default 10) Slope",double,"");
55     BBTK_INPUT(DistanceMap,Point1,"Start point",std::vector<int>,"");
56     BBTK_INPUT(DistanceMap,Point2,"End point (There is no guarantee of reaching this point.)",std::vector<int>,"");
57
58     BBTK_OUTPUT(DistanceMap,Out,"Output image",vtkImageData*,"");
59     BBTK_OUTPUT(DistanceMap,Length,"Path Length",int,"");
60     BBTK_OUTPUT(DistanceMap,FinalPoint,"Final Point",std::vector<int>,"");
61     BBTK_OUTPUT(DistanceMap,LstPathXOut,"Vector path X",std::vector<int>,"");
62     BBTK_OUTPUT(DistanceMap,LstPathYOut,"Vector path Y",std::vector<int>,"");
63     BBTK_OUTPUT(DistanceMap,LstPathZOut,"Vector path Z",std::vector<int>,"");
64
65 BBTK_END_DESCRIBE_BLACK_BOX(DistanceMap);
66 //===== 
67 // 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)
68 //===== 
69 }
70 // EO namespace bbcreaVtk
71
72 #endif // __bbcreaVtkDistanceMap_h_INCLUDED__
73