X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=bbtk_Slicer_PKG%2Fsrc%2FbbSlicerRobustMultiresolutionAffineRegistration.h;fp=bbtk_Slicer_PKG%2Fsrc%2FbbSlicerRobustMultiresolutionAffineRegistration.h;h=e71228afa8f0b7be9675ab13352c1ed675834096;hb=e7b4e2c9254e9e431f74acc92e3f0d40fc5e7ef6;hp=0000000000000000000000000000000000000000;hpb=cd590ce5fff20d69c7060340235a35e9c2a9ef86;p=creaCLI.git diff --git a/bbtk_Slicer_PKG/src/bbSlicerRobustMultiresolutionAffineRegistration.h b/bbtk_Slicer_PKG/src/bbSlicerRobustMultiresolutionAffineRegistration.h new file mode 100644 index 0000000..e71228a --- /dev/null +++ b/bbtk_Slicer_PKG/src/bbSlicerRobustMultiresolutionAffineRegistration.h @@ -0,0 +1,78 @@ +#ifndef __bbSlicerRobustMultiresolutionAffineRegistration_h_INCLUDED__ +#define __bbSlicerRobustMultiresolutionAffineRegistration_h_INCLUDED__ + +#include "bbSlicer_EXPORT.h" +#include "bbtkAtomicBlackBox.h" + +#include +#include +#include +#include +#include +#include + +#include +#include +#include +#include +#include + +#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 ); +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, ""); +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__ + +