]> Creatis software - creaCLI.git/blobdiff - ModuleCall/GenSrc/bbSlicerRobustMultiresolutionAffineRegistration.h
All Slicer modules succesfully compiled into BBTK boxes :P
[creaCLI.git] / ModuleCall / GenSrc / bbSlicerRobustMultiresolutionAffineRegistration.h
diff --git a/ModuleCall/GenSrc/bbSlicerRobustMultiresolutionAffineRegistration.h b/ModuleCall/GenSrc/bbSlicerRobustMultiresolutionAffineRegistration.h
new file mode 100644 (file)
index 0000000..e71228a
--- /dev/null
@@ -0,0 +1,78 @@
+#ifndef __bbSlicerRobustMultiresolutionAffineRegistration_h_INCLUDED__
+#define __bbSlicerRobustMultiresolutionAffineRegistration_h_INCLUDED__
+
+#include "bbSlicer_EXPORT.h"
+#include "bbtkAtomicBlackBox.h"
+
+#include <vector>
+#include <cstdlib>
+#include <dlfcn.h>
+#include <sstream>
+#include <fstream>
+#include <iostream>
+
+#include <ModuleDescriptionUtilities.h>
+#include <ModuleDescriptionParser.h>
+#include <ModuleParameterGroup.h>
+#include <ModuleDescription.h>
+#include <ModuleParameter.h>
+
+#include "CreationTool.h"
+
+namespace bbSlicer {
+
+    class bbSlicer_EXPORT RobustMultiresolutionAffineRegistration
+    :
+    public bbtk::AtomicBlackBox {
+        BBTK_BLACK_BOX_INTERFACE ( RobustMultiresolutionAffineRegistration , bbtk::AtomicBlackBox ) ;
+
+        // GENERATED ARGS        
+        
+BBTK_DECLARE_INPUT ( fixedImage , std::string );
+BBTK_DECLARE_INPUT ( movingImage , std::string );
+BBTK_DECLARE_INPUT ( resampledImage , std::string );
+BBTK_DECLARE_INPUT ( outputTransform , std::string );
+BBTK_DECLARE_INPUT ( fixedImageMask , std::string );
+BBTK_DECLARE_INPUT ( fixedImageROI , std::vector<float> );
+BBTK_DECLARE_INPUT ( numIterations , int );
+BBTK_DECLARE_INPUT ( numLineIterations , int );
+BBTK_DECLARE_INPUT ( stepSize , float );
+BBTK_DECLARE_INPUT ( stepTolerance , float );
+BBTK_DECLARE_INPUT ( metricTolerance , float );
+
+        // EO GENERATED ARGS
+
+        BBTK_PROCESS ( Process ) ;
+        void Process ( ) ;
+    private:
+        void execute ( std::string lib , int _argc , char * _argv[] ) ;
+    } ;
+
+    BBTK_BEGIN_DESCRIBE_BLACK_BOX ( RobustMultiresolutionAffineRegistration , bbtk::AtomicBlackBox ) ;
+    BBTK_NAME ( "RobustMultiresolutionAffineRegistration" ) ;
+    BBTK_AUTHOR ( "Casey B Goodlett" ) ;
+    BBTK_DESCRIPTION ( "Provides affine registration using multiple resolution levels and decomposed affine transforms." ) ;
+    BBTK_CATEGORY ( "Legacy.Registration" ) ;
+
+    // GENERATED DESCRPTION
+    
+BBTK_INPUT(RobustMultiresolutionAffineRegistration , fixedImage , "fixedImage" , std::string, "");
+BBTK_INPUT(RobustMultiresolutionAffineRegistration , movingImage , "movingImage" , std::string, "");
+BBTK_INPUT(RobustMultiresolutionAffineRegistration , resampledImage , "resampledImage" , std::string, "");
+BBTK_INPUT(RobustMultiresolutionAffineRegistration , outputTransform , "outputTransform" , std::string, "");
+BBTK_INPUT(RobustMultiresolutionAffineRegistration , fixedImageMask , "fixedImageMask" , std::string, "");
+BBTK_INPUT(RobustMultiresolutionAffineRegistration , fixedImageROI , "fixedImageROI" , std::vector<float>, "");
+BBTK_INPUT(RobustMultiresolutionAffineRegistration , numIterations , "numIterations" , int, "");
+BBTK_INPUT(RobustMultiresolutionAffineRegistration , numLineIterations , "numLineIterations" , int, "");
+BBTK_INPUT(RobustMultiresolutionAffineRegistration , stepSize , "stepSize" , float, "");
+BBTK_INPUT(RobustMultiresolutionAffineRegistration , stepTolerance , "stepTolerance" , float, "");
+BBTK_INPUT(RobustMultiresolutionAffineRegistration , metricTolerance , "metricTolerance" , float, "");
+
+    // EO GENERATED DESCRIPTION
+
+    BBTK_END_DESCRIBE_BLACK_BOX ( RobustMultiresolutionAffineRegistration ) ;
+}
+
+#endif // __bbSlicerRobustMultiresolutionAffineRegistration_h_INCLUDED__
+
+