]> Creatis software - creaCLI.git/blob - ModuleCall/GenSrc/bbSlicerBSplinetodeformationfield.h
All Slicer modules succesfully compiled into BBTK boxes :P
[creaCLI.git] / ModuleCall / GenSrc / bbSlicerBSplinetodeformationfield.h
1 #ifndef __bbSlicerBSplinetodeformationfield_h_INCLUDED__
2 #define __bbSlicerBSplinetodeformationfield_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 BSplinetodeformationfield
25     :
26     public bbtk::AtomicBlackBox {
27         BBTK_BLACK_BOX_INTERFACE ( BSplinetodeformationfield , bbtk::AtomicBlackBox ) ;
28
29         // GENERATED ARGS        
30         
31 BBTK_DECLARE_INPUT ( inputTransformName , std::string );
32 BBTK_DECLARE_INPUT ( referenceImageName , std::string );
33 BBTK_DECLARE_INPUT ( deformationFieldName , std::string );
34
35         // EO GENERATED ARGS
36
37         BBTK_PROCESS ( Process ) ;
38         void Process ( ) ;
39     private:
40         void execute ( std::string lib , int _argc , char * _argv[] ) ;
41     } ;
42
43     BBTK_BEGIN_DESCRIBE_BLACK_BOX ( BSplinetodeformationfield , bbtk::AtomicBlackBox ) ;
44     BBTK_NAME ( "BSplinetodeformationfield" ) ;
45     BBTK_AUTHOR ( "Andrey Fedorov, BWH" ) ;
46     BBTK_DESCRIPTION ( "Create a dense deformation field from a bspline+bulk transform." ) ;
47     BBTK_CATEGORY ( "Legacy.Converters" ) ;
48
49     // GENERATED DESCRPTION
50     
51 BBTK_INPUT(BSplinetodeformationfield , inputTransformName , "inputTransformName" , std::string, "");
52 BBTK_INPUT(BSplinetodeformationfield , referenceImageName , "referenceImageName" , std::string, "");
53 BBTK_INPUT(BSplinetodeformationfield , deformationFieldName , "deformationFieldName" , std::string, "");
54
55     // EO GENERATED DESCRIPTION
56
57     BBTK_END_DESCRIBE_BLACK_BOX ( BSplinetodeformationfield ) ;
58 }
59
60 #endif // __bbSlicerBSplinetodeformationfield_h_INCLUDED__
61
62