]> Creatis software - creaCLI.git/blob - ModuleCall/GenSrc/bbSlicerLinearregistration.cxx
All Slicer modules succesfully compiled into BBTK boxes :P
[creaCLI.git] / ModuleCall / GenSrc / bbSlicerLinearregistration.cxx
1 #include "bbSlicerLinearregistration.h"
2 #include "bbSlicerPackage.h"
3
4 namespace bbSlicer {
5     BBTK_ADD_BLACK_BOX_TO_PACKAGE ( Slicer, Linearregistration )
6     BBTK_BLACK_BOX_IMPLEMENTATION ( Linearregistration, bbtk::AtomicBlackBox );
7
8     void Linearregistration::Process ( ) {
9
10         // GENERATED
11
12 int _argc =12;
13 std::string lib = "/home/riveros/.slicer/Slicer4-bin/Slicer-build/lib/Slicer-4.0/cli-modules/libLinearRegistrationLib.so";
14 char * _argv[ ] = { Mthd::Aux::toCharArrray( Mthd::Aux::toString( "--fixedsmoothingfactor"  ) + Mthd::Aux::replace_str ( ( Mthd::Aux::toString( bbGetInputFixedImageSmoothingFactor( ) ) ) ,"@@@@@"," --fixedsmoothingfactor ") ),
15 Mthd::Aux::toCharArrray( Mthd::Aux::toString( "--movingsmoothingfactor"  ) + Mthd::Aux::replace_str ( ( Mthd::Aux::toString( bbGetInputMovingImageSmoothingFactor( ) ) ) ,"@@@@@"," --movingsmoothingfactor ") ),
16 Mthd::Aux::toCharArrray( Mthd::Aux::toString( "-b"  ) + Mthd::Aux::replace_str ( ( Mthd::Aux::toString( bbGetInputHistogramBins( ) ) ) ,"@@@@@"," -b ") ),
17 Mthd::Aux::toCharArrray( Mthd::Aux::toString( "-s"  ) + Mthd::Aux::replace_str ( ( Mthd::Aux::toString( bbGetInputSpatialSamples( ) ) ) ,"@@@@@"," -s ") ),
18 Mthd::Aux::toCharArrray( Mthd::Aux::toString( "-i"  ) + Mthd::Aux::replace_str ( ( Mthd::Aux::toString( bbGetInputIterations( ) ) ) ,"@@@@@"," -i ") ),
19 Mthd::Aux::toCharArrray( Mthd::Aux::toString( "-l"  ) + Mthd::Aux::replace_str ( ( Mthd::Aux::toString( bbGetInputLearningRate( ) ) ) ,"@@@@@"," -l ") ),
20 Mthd::Aux::toCharArrray( Mthd::Aux::toString( "-t"  ) + Mthd::Aux::replace_str ( ( Mthd::Aux::toString( bbGetInputTranslationScale( ) ) ) ,"@@@@@"," -t ") ),
21 Mthd::Aux::toCharArrray( Mthd::Aux::toString( "--initialtransform"  ) + Mthd::Aux::replace_str ( ( Mthd::Aux::toString( bbGetInputInitialTransform( ) ) ) ,"@@@@@"," --initialtransform ") ),
22 Mthd::Aux::toCharArrray( Mthd::Aux::replace_str ( ( Mthd::Aux::toString( bbGetInputFixedImageFileName( ) ) ) ,"@@@@@","") ),
23 Mthd::Aux::toCharArrray( Mthd::Aux::replace_str ( ( Mthd::Aux::toString( bbGetInputMovingImageFileName( ) ) ) ,"@@@@@","") ),
24 Mthd::Aux::toCharArrray( Mthd::Aux::toString( "--outputtransform"  ) + Mthd::Aux::replace_str ( ( Mthd::Aux::toString( bbGetInputOutputTransform( ) ) ) ,"@@@@@"," --outputtransform ") ),
25 Mthd::Aux::toCharArrray( Mthd::Aux::toString( "--resampledmovingfilename"  ) + Mthd::Aux::replace_str ( ( Mthd::Aux::toString( bbGetInputResampledImageFileName( ) ) ) ,"@@@@@"," --resampledmovingfilename ") ) };
26
27         // EO GENERATED
28         this->execute( lib, _argc, _argv );
29
30     }
31
32     void Linearregistration::execute ( std::string lib, int _argc, char * _argv[] ) {
33         void* handle = dlopen( lib.c_str( ), RTLD_NOW | RTLD_GLOBAL );
34         if ( ! handle ) {
35             std::cerr << "CAN'T OPEN LIBRARY: " << dlerror( ) << '\n';
36             return;
37         }
38         typedef int (*method_t )( int argc, char * argv[] );
39         // RESET ERROR
40         dlerror( );
41         // PROTOTYPE
42         method_t myMethod = ( method_t ) dlsym( handle, "ModuleEntryPoint" );
43         const char *dlsym_error = dlerror( );
44         if ( dlsym_error ) {
45             std::cerr << "CAN'T LOAD SYMBOL 'ModuleEntryPoint':" << dlsym_error << '\n';
46             dlclose( handle );
47             return;
48         }
49         // METHOD CALL
50         myMethod( _argc, _argv );
51         // CLOSING LIB
52         dlclose( handle );
53     }
54
55     void Linearregistration::bbUserSetDefaultValues ( ) {
56     }
57
58     void Linearregistration::bbUserInitializeProcessing ( ) {
59     }
60
61     void Linearregistration::bbUserFinalizeProcessing ( ) {
62     }
63 }
64 // EO namespace bbSlicer
65
66