]> Creatis software - creaVtk.git/blob - bbtk_creaVtk_PKG/src/bbcreaVtkHausdorffDistancePointSetFilter.cxx
#3458 box HausdorffDistancePointSetFilter
[creaVtk.git] / bbtk_creaVtk_PKG / src / bbcreaVtkHausdorffDistancePointSetFilter.cxx
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 #include "bbcreaVtkHausdorffDistancePointSetFilter.h"
5 #include "bbcreaVtkPackage.h"
6
7 #include <vtkHausdorffDistancePointSetFilter.h>
8
9 namespace bbcreaVtk
10 {
11
12 BBTK_ADD_BLACK_BOX_TO_PACKAGE(creaVtk,HausdorffDistancePointSetFilter)
13 BBTK_BLACK_BOX_IMPLEMENTATION(HausdorffDistancePointSetFilter,bbtk::AtomicBlackBox);
14 //===== 
15 // 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)
16 //===== 
17 void HausdorffDistancePointSetFilter::Process()
18 {
19
20 // THE MAIN PROCESSING METHOD BODY
21 //   Here we simply set the input 'In' value to the output 'Out'
22 //   And print out the output value
23 // INPUT/OUTPUT ACCESSORS ARE OF THE FORM :
24 //    void bbSet{Input|Output}NAME(const TYPE&)
25 //    const TYPE& bbGet{Input|Output}NAME() const 
26 //    Where :
27 //    * NAME is the name of the input/output
28 //      (the one provided in the attribute 'name' of the tag 'input')
29 //    * TYPE is the C++ type of the input/output
30 //      (the one provided in the attribute 'type' of the tag 'input')
31
32 //    bbSetOutputOut( bbGetInputIn() );
33 //    std::cout << "Output value = " <<bbGetOutputOut() << std::endl;
34
35         if ((bbGetInputInA()!=NULL) &&  (bbGetInputInB()!=NULL)  ) 
36         {
37                 vtkHausdorffDistancePointSetFilter *hausdorff = vtkHausdorffDistancePointSetFilter::New();
38                 hausdorff->SetInputData(0, bbGetInputInA() );
39                 hausdorff->SetInputData(1, bbGetInputInB() );           
40                 
41 //              hausdorff->SetTargetDistanceMethodToPointToCell();
42                 hausdorff->SetTargetDistanceMethodToPointToPoint();             
43                 
44                 hausdorff->Update();
45                 double rdAB,rdBA,hd;
46                 hausdorff->GetRelativeDistance(rdAB,rdBA);              
47                 hd=hausdorff->GetHausdorffDistance();
48                 bbSetOutputRelativeDistanceAtoB( rdAB );
49                 bbSetOutputRelativeDistanceBtoA( rdBA );
50                 bbSetOutputHausdorffDistance( hd );
51                 bbSetOutputOutA( (vtkPolyData*) (hausdorff->GetOutput(0)) );
52                 bbSetOutputOutB( (vtkPolyData*) (hausdorff->GetOutput(1)) );
53         } // if 
54 }
55 //===== 
56 // 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)
57 //===== 
58 void HausdorffDistancePointSetFilter::bbUserSetDefaultValues()
59 {
60
61 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
62 //    Here we initialize the input 'In' to 0
63    bbSetInputInA(NULL);
64    bbSetInputInB(NULL);
65   
66 }
67 //===== 
68 // 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)
69 //===== 
70 void HausdorffDistancePointSetFilter::bbUserInitializeProcessing()
71 {
72
73 //  THE INITIALIZATION METHOD BODY :
74 //    Here does nothing 
75 //    but this is where you should allocate the internal/output pointers 
76 //    if any 
77
78   
79 }
80 //===== 
81 // 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)
82 //===== 
83 void HausdorffDistancePointSetFilter::bbUserFinalizeProcessing()
84 {
85
86 //  THE FINALIZATION METHOD BODY :
87 //    Here does nothing 
88 //    but this is where you should desallocate the internal/output pointers 
89 //    if any
90   
91 }
92 }
93 // EO namespace bbcreaVtk
94
95