]> Creatis software - creaContours.git/blob - bbtk/src/bbcreaContourswxContourMainFrame_tool.cxx
#3388 wxContourMainFrame_tool box BBTK
[creaContours.git] / bbtk / src / bbcreaContourswxContourMainFrame_tool.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 "bbcreaContourswxContourMainFrame_tool.h"
5 #include "bbcreaContoursPackage.h"
6
7 #include "wxContourMainFrame.h"
8
9 namespace bbcreaContours
10 {
11
12 BBTK_ADD_BLACK_BOX_TO_PACKAGE(creaContours,wxContourMainFrame_tool)
13 BBTK_BLACK_BOX_IMPLEMENTATION(wxContourMainFrame_tool,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 wxContourMainFrame_tool::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 //    bbSetOutputOut( bbGetInputIn() );
32 //    std::cout << "Output value = " <<bbGetOutputOut() << std::endl;
33   
34     if (wxContourMainFrame::getInstance()!=NULL)
35     {
36         if (bbGetInputType()==1)
37         {
38             if (bbGetInputImage()!=NULL)
39             {
40                 std::vector<double> param1=bbGetInputParam1();
41                 if (param1.size()==6) 
42                 {
43                     int     step        = param1[0];
44                     double  isovalue    = param1[1];
45                     int     sampling    = param1[2];
46                     int     method      = param1[3];
47                     int     min         = param1[4];
48                     int     max         = param1[5];
49                     wxContourMainFrame::getInstance()->onDeleteAllContours();
50                     wxContourMainFrame::getInstance()->onSegmentationAllSlices2(step ,isovalue,sampling,method,min,max, bbGetInputImage() ); // step,isovalue,sampling,method
51                 } else {
52                     printf("BBTK warnning!!  wxContourMainFrame_tool box. In Type=1 the Param1 es not complite \n");
53                 }// size
54             }  // if Image
55         } // Type==1
56     }
57     
58 }
59 //===== 
60 // 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)
61 //===== 
62 void wxContourMainFrame_tool::bbUserSetDefaultValues()
63 {
64 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
65 //    Here we initialize the input 'In' to 0
66    bbSetInputType(0);
67    bbSetInputImage(NULL);
68 }
69
70 //=====
71 // 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)
72 //===== 
73 void wxContourMainFrame_tool::bbUserInitializeProcessing()
74 {
75 //  THE INITIALIZATION METHOD BODY :
76 //    Here does nothing 
77 //    but this is where you should allocate the internal/output pointers 
78 //    if any
79 }
80
81 //=====
82 // 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)
83 //===== 
84 void wxContourMainFrame_tool::bbUserFinalizeProcessing()
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 }// EO namespace bbcreaContours