#ifndef __bbSlicerFiducialRegistration_h_INCLUDED__ #define __bbSlicerFiducialRegistration_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 FiducialRegistration : public bbtk::AtomicBlackBox { BBTK_BLACK_BOX_INTERFACE ( FiducialRegistration , bbtk::AtomicBlackBox ) ; // GENERATED ARGS BBTK_DECLARE_INPUT ( fixedLandmarks , std::vector > ); BBTK_DECLARE_INPUT ( movingLandmarks , std::vector > ); BBTK_DECLARE_INPUT ( saveTransform , std::string ); BBTK_DECLARE_INPUT ( transformType , std::string ); // EO GENERATED ARGS BBTK_PROCESS ( Process ) ; void Process ( ) ; private: void execute ( std::string lib , int _argc , char * _argv[] ) ; } ; BBTK_BEGIN_DESCRIBE_BLACK_BOX ( FiducialRegistration , bbtk::AtomicBlackBox ) ; BBTK_NAME ( "FiducialRegistration" ) ; BBTK_AUTHOR ( "Casey B Goodlett" ) ; BBTK_DESCRIPTION ( "Computes a rigid, similarity or affine transform from a matched list of fiducials" ) ; BBTK_CATEGORY ( "Registration.Specialized" ) ; // GENERATED DESCRPTION BBTK_INPUT(FiducialRegistration , fixedLandmarks , "fixedLandmarks" , std::vector >, ""); BBTK_INPUT(FiducialRegistration , movingLandmarks , "movingLandmarks" , std::vector >, ""); BBTK_INPUT(FiducialRegistration , saveTransform , "saveTransform" , std::string, ""); BBTK_INPUT(FiducialRegistration , transformType , "transformType" , std::string, ""); // EO GENERATED DESCRIPTION BBTK_END_DESCRIBE_BLACK_BOX ( FiducialRegistration ) ; } #endif // __bbSlicerFiducialRegistration_h_INCLUDED__