]> Creatis software - creaCLI.git/blob - bbtk_Slicer_PKG/src/bbSlicerCastImage.h
All Slicer modules succesfully compiled into BBTK boxes :P
[creaCLI.git] / bbtk_Slicer_PKG / src / bbSlicerCastImage.h
1 #ifndef __bbSlicerCastImage_h_INCLUDED__
2 #define __bbSlicerCastImage_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 CastImage
25     :
26     public bbtk::AtomicBlackBox {
27         BBTK_BLACK_BOX_INTERFACE ( CastImage , bbtk::AtomicBlackBox ) ;
28
29         // GENERATED ARGS        
30         
31 BBTK_DECLARE_INPUT ( InputVolume , std::string );
32 BBTK_DECLARE_INPUT ( OutputVolume , std::string );
33 BBTK_DECLARE_INPUT ( Type , 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 ( CastImage , bbtk::AtomicBlackBox ) ;
44     BBTK_NAME ( "CastImage" ) ;
45     BBTK_AUTHOR ( "Nicole Aucoin, BWH Ron Kikinis, BWH" ) ;
46     BBTK_DESCRIPTION ( "Cast a volume to a given data type.Use at your own risk when casting an input volume into a lower precision type!Allows casting to the same type as the input volume." ) ;
47     BBTK_CATEGORY ( "Filtering.Arithmetic" ) ;
48
49     // GENERATED DESCRPTION
50     
51 BBTK_INPUT(CastImage , InputVolume , "InputVolume" , std::string, "");
52 BBTK_INPUT(CastImage , OutputVolume , "OutputVolume" , std::string, "");
53 BBTK_INPUT(CastImage , Type , "Type" , std::string, "");
54
55     // EO GENERATED DESCRIPTION
56
57     BBTK_END_DESCRIBE_BLACK_BOX ( CastImage ) ;
58 }
59
60 #endif // __bbSlicerCastImage_h_INCLUDED__
61
62