#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__