]> Creatis software - creaCLI.git/blob - ModuleCall/GenSrc/bbSlicerRicianLMMSEImageFilter.cxx
All Slicer modules succesfully compiled into BBTK boxes :P
[creaCLI.git] / ModuleCall / GenSrc / bbSlicerRicianLMMSEImageFilter.cxx
1 #include "bbSlicerRicianLMMSEImageFilter.h"
2 #include "bbSlicerPackage.h"
3
4 namespace bbSlicer {
5     BBTK_ADD_BLACK_BOX_TO_PACKAGE ( Slicer, RicianLMMSEImageFilter )
6     BBTK_BLACK_BOX_IMPLEMENTATION ( RicianLMMSEImageFilter, bbtk::AtomicBlackBox );
7
8     void RicianLMMSEImageFilter::Process ( ) {
9
10         // GENERATED
11
12 int _argc =11;
13 std::string lib = "/home/riveros/.slicer/Slicer4-bin/Slicer-build/lib/Slicer-4.0/cli-modules/libdwiNoiseFilterLib.so";
14 char * _argv[ ] = { Mthd::Aux::toCharArrray( Mthd::Aux::toString( "--iter"  ) + Mthd::Aux::replace_str ( ( Mthd::Aux::toString( bbGetInputiIterations( ) ) ) ,"@@@@@"," --iter ") ),
15 Mthd::Aux::toCharArrray( Mthd::Aux::toString( "--re"  ) + Mthd::Aux::replace_str ( ( Mthd::Aux::toString( bbGetInputiRadiusEstimation( ) ) ) ,"@@@@@"," --re ") ),
16 Mthd::Aux::toCharArrray( Mthd::Aux::toString( "--rf"  ) + Mthd::Aux::replace_str ( ( Mthd::Aux::toString( bbGetInputiRadiusFiltering( ) ) ) ,"@@@@@"," --rf ") ),
17 Mthd::Aux::toCharArrray( Mthd::Aux::toString( "--mnvf"  ) + Mthd::Aux::replace_str ( ( Mthd::Aux::toString( bbGetInputiMinimumNumberOfUsedVoxelsF( ) ) ) ,"@@@@@"," --mnvf ") ),
18 Mthd::Aux::toCharArrray( Mthd::Aux::toString( "--mnve"  ) + Mthd::Aux::replace_str ( ( Mthd::Aux::toString( bbGetInputiMinimumNumberOfUsedVoxelsE( ) ) ) ,"@@@@@"," --mnve ") ),
19 Mthd::Aux::toCharArrray( Mthd::Aux::toString( "--minnstd"  ) + Mthd::Aux::replace_str ( ( Mthd::Aux::toString( bbGetInputdMinSTD( ) ) ) ,"@@@@@"," --minnstd ") ),
20 Mthd::Aux::toCharArrray( Mthd::Aux::toString( "--maxnstd"  ) + Mthd::Aux::replace_str ( ( Mthd::Aux::toString( bbGetInputdMaxSTD( ) ) ) ,"@@@@@"," --maxnstd ") ),
21 Mthd::Aux::toCharArrray( Mthd::Aux::toString( "--hrf"  ) + Mthd::Aux::replace_str ( ( Mthd::Aux::toString( bbGetInputdResFact( ) ) ) ,"@@@@@"," --hrf ") ),
22 Mthd::Aux::toCharArrray( Mthd::Aux::toString( "--uav"  ) + Mthd::Aux::replace_str ( ( Mthd::Aux::toString( bbGetInputbUseAbsoluteValue( ) ) ) ,"@@@@@"," --uav ") ),
23 Mthd::Aux::toCharArrray( Mthd::Aux::replace_str ( ( Mthd::Aux::toString( bbGetInputinputVolume( ) ) ) ,"@@@@@","") ),
24 Mthd::Aux::toCharArrray( Mthd::Aux::replace_str ( ( Mthd::Aux::toString( bbGetInputoutputVolume( ) ) ) ,"@@@@@","") ) };
25
26         // EO GENERATED
27         this->execute( lib, _argc, _argv );
28
29     }
30
31     void RicianLMMSEImageFilter::execute ( std::string lib, int _argc, char * _argv[] ) {
32         void* handle = dlopen( lib.c_str( ), RTLD_NOW | RTLD_GLOBAL );
33         if ( ! handle ) {
34             std::cerr << "CAN'T OPEN LIBRARY: " << dlerror( ) << '\n';
35             return;
36         }
37         typedef int (*method_t )( int argc, char * argv[] );
38         // RESET ERROR
39         dlerror( );
40         // PROTOTYPE
41         method_t myMethod = ( method_t ) dlsym( handle, "ModuleEntryPoint" );
42         const char *dlsym_error = dlerror( );
43         if ( dlsym_error ) {
44             std::cerr << "CAN'T LOAD SYMBOL 'ModuleEntryPoint':" << dlsym_error << '\n';
45             dlclose( handle );
46             return;
47         }
48         // METHOD CALL
49         myMethod( _argc, _argv );
50         // CLOSING LIB
51         dlclose( handle );
52     }
53
54     void RicianLMMSEImageFilter::bbUserSetDefaultValues ( ) {
55     }
56
57     void RicianLMMSEImageFilter::bbUserInitializeProcessing ( ) {
58     }
59
60     void RicianLMMSEImageFilter::bbUserFinalizeProcessing ( ) {
61     }
62 }
63 // EO namespace bbSlicer
64
65