]> Creatis software - creaCLI.git/blob - ModuleCall/GenSrc/bbSlicerHistogramMatching.h
All Slicer modules succesfully compiled into BBTK boxes :P
[creaCLI.git] / ModuleCall / GenSrc / bbSlicerHistogramMatching.h
1 #ifndef __bbSlicerHistogramMatching_h_INCLUDED__
2 #define __bbSlicerHistogramMatching_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 HistogramMatching
25     :
26     public bbtk::AtomicBlackBox {
27         BBTK_BLACK_BOX_INTERFACE ( HistogramMatching , bbtk::AtomicBlackBox ) ;
28
29         // GENERATED ARGS        
30         
31 BBTK_DECLARE_INPUT ( numberOfHistogramLevels , int );
32 BBTK_DECLARE_INPUT ( numberOfMatchPoints , int );
33 BBTK_DECLARE_INPUT ( thresholdAtMeanIntensity , bool );
34 BBTK_DECLARE_INPUT ( inputVolume , std::string );
35 BBTK_DECLARE_INPUT ( referenceVolume , std::string );
36 BBTK_DECLARE_INPUT ( outputVolume , std::string );
37
38         // EO GENERATED ARGS
39
40         BBTK_PROCESS ( Process ) ;
41         void Process ( ) ;
42     private:
43         void execute ( std::string lib , int _argc , char * _argv[] ) ;
44     } ;
45
46     BBTK_BEGIN_DESCRIBE_BLACK_BOX ( HistogramMatching , bbtk::AtomicBlackBox ) ;
47     BBTK_NAME ( "HistogramMatching" ) ;
48     BBTK_AUTHOR ( "Bill Lorensen" ) ;
49     BBTK_DESCRIPTION ( "Normalizes the grayscale values of a source image based on the grayscale values of a reference image.  This filter uses a histogram matching technique where the histograms of the two images are matched only at a specified number of quantile values.The filter was orginally designed to normalize MR images of the sameMR protocol and same body part. The algorithm works best if background pixels are excluded from both the source and reference histograms.  A simple background exclusion method is to exclude all pixels whose grayscale values are smaller than the mean grayscale value. ThresholdAtMeanIntensity switches on this simple background exclusion method.Number of match points governs the number of quantile values to be matched.The filter assumes that both the source and reference are of the same type and that the input and output image type have the same number of dimension and have scalar pixel types." ) ;
50     BBTK_CATEGORY ( "Filtering" ) ;
51
52     // GENERATED DESCRPTION
53     
54 BBTK_INPUT(HistogramMatching , numberOfHistogramLevels , "numberOfHistogramLevels" , int, "");
55 BBTK_INPUT(HistogramMatching , numberOfMatchPoints , "numberOfMatchPoints" , int, "");
56 BBTK_INPUT(HistogramMatching , thresholdAtMeanIntensity , "thresholdAtMeanIntensity" , bool, "");
57 BBTK_INPUT(HistogramMatching , inputVolume , "inputVolume" , std::string, "");
58 BBTK_INPUT(HistogramMatching , referenceVolume , "referenceVolume" , std::string, "");
59 BBTK_INPUT(HistogramMatching , outputVolume , "outputVolume" , std::string, "");
60
61     // EO GENERATED DESCRIPTION
62
63     BBTK_END_DESCRIBE_BLACK_BOX ( HistogramMatching ) ;
64 }
65
66 #endif // __bbSlicerHistogramMatching_h_INCLUDED__
67
68