]> Creatis software - creaCLI.git/blob - ModuleCall/GenSrc/bbSlicerOrientImages.h
All Slicer modules succesfully compiled into BBTK boxes :P
[creaCLI.git] / ModuleCall / GenSrc / bbSlicerOrientImages.h
1 #ifndef __bbSlicerOrientImages_h_INCLUDED__
2 #define __bbSlicerOrientImages_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 OrientImages
25     :
26     public bbtk::AtomicBlackBox {
27         BBTK_BLACK_BOX_INTERFACE ( OrientImages , bbtk::AtomicBlackBox ) ;
28
29         // GENERATED ARGS        
30         
31 BBTK_DECLARE_INPUT ( inputVolume1 , std::string );
32 BBTK_DECLARE_INPUT ( outputVolume , std::string );
33 BBTK_DECLARE_INPUT ( orientation , 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 ( OrientImages , bbtk::AtomicBlackBox ) ;
44     BBTK_NAME ( "OrientImages" ) ;
45     BBTK_AUTHOR ( "Bill Lorensen" ) ;
46     BBTK_DESCRIPTION ( "Orients an output volume. Rearranges the slices in a volume according to the selected orientation. The slices are not interpolated. They are just reordered and/or permuted. The resulting volume will cover the original volume. NOTE: since Slicer takes into account the orientation of a volume, the re-oriented volume will not show any difference from the original volume, To see the difference, save the volume and display it with a system that either ignores the orientation of the image e.g. Paraview or displays individual images." ) ;
47     BBTK_CATEGORY ( "Converters" ) ;
48
49     // GENERATED DESCRPTION
50     
51 BBTK_INPUT(OrientImages , inputVolume1 , "inputVolume1" , std::string, "");
52 BBTK_INPUT(OrientImages , outputVolume , "outputVolume" , std::string, "");
53 BBTK_INPUT(OrientImages , orientation , "orientation" , std::string, "");
54
55     // EO GENERATED DESCRIPTION
56
57     BBTK_END_DESCRIBE_BLACK_BOX ( OrientImages ) ;
58 }
59
60 #endif // __bbSlicerOrientImages_h_INCLUDED__
61
62