]> Creatis software - creaCLI.git/blob - bbtk_Slicer_PKG/src/bbSlicerLabelMapSmoothing.h
The following boxxes compilated with no errors
[creaCLI.git] / bbtk_Slicer_PKG / src / bbSlicerLabelMapSmoothing.h
1 #ifndef __bbSlicerLabelMapSmoothing_h_INCLUDED__
2 #define __bbSlicerLabelMapSmoothing_h_INCLUDED__
3
4 #include "bbSlicer_EXPORT.h"
5 #include "bbtkAtomicBlackBox.h"
6
7 #include <vector>
8 #include <cstdlib>
9 #include <dlfcn.h>
10 #include <sstream>
11 #include <fstream>
12 #include <iostream>
13
14 #include <ModuleDescriptionUtilities.h>
15 #include <ModuleDescriptionParser.h>
16 #include <ModuleParameterGroup.h>
17 #include <ModuleDescription.h>
18 #include <ModuleParameter.h>
19
20 #include "CreationTool.h"
21
22 namespace bbSlicer {
23
24     class bbSlicer_EXPORT LabelMapSmoothing
25     :
26     public bbtk::AtomicBlackBox {
27         BBTK_BLACK_BOX_INTERFACE ( LabelMapSmoothing , bbtk::AtomicBlackBox ) ;
28
29         // GENERATED ARGS        
30         
31 BBTK_DECLARE_INPUT ( labelToSmooth , int );
32 BBTK_DECLARE_INPUT ( numberOfIterations , int );
33 BBTK_DECLARE_INPUT ( maxRMSError , float );
34 BBTK_DECLARE_INPUT ( gaussianSigma , float );
35 BBTK_DECLARE_INPUT ( inputVolume , std::string );
36 BBTK_DECLARE_INPUT ( outputVolume , std::string );
37
38         // EO GENERATED ARGS
39
40         BBTK_PROCESS ( Process ) ;
41         void Process ( ) ;
42     private:
43         void execute ( std::string lib , int _argc , char * _argv[] ) ;
44     } ;
45
46     BBTK_BEGIN_DESCRIBE_BLACK_BOX ( LabelMapSmoothing , bbtk::AtomicBlackBox ) ;
47     BBTK_NAME ( "LabelMapSmoothing" ) ;
48     BBTK_AUTHOR ( "Dirk Padfield, Josh Cates, Ross Whitaker" ) ;
49     BBTK_DESCRIPTION ( "This filter smoothes a binary label map.  With a label map as input, this filter runs an anti-alising algorithm followed by a Gaussian smoothing algorithm.  The output is a smoothed label map." ) ;
50     BBTK_CATEGORY ( "Surface Models" ) ;
51
52     // GENERATED DESCRPTION
53     
54 BBTK_INPUT(LabelMapSmoothing , labelToSmooth , "labelToSmooth" , int, "");
55 BBTK_INPUT(LabelMapSmoothing , numberOfIterations , "numberOfIterations" , int, "");
56 BBTK_INPUT(LabelMapSmoothing , maxRMSError , "maxRMSError" , float, "");
57 BBTK_INPUT(LabelMapSmoothing , gaussianSigma , "gaussianSigma" , float, "");
58 BBTK_INPUT(LabelMapSmoothing , inputVolume , "inputVolume" , std::string, "");
59 BBTK_INPUT(LabelMapSmoothing , outputVolume , "outputVolume" , std::string, "");
60
61     // EO GENERATED DESCRIPTION
62
63     BBTK_END_DESCRIBE_BLACK_BOX ( LabelMapSmoothing ) ;
64 }
65
66 #endif // __bbSlicerLabelMapSmoothing_h_INCLUDED__
67
68