X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=ModuleCall%2FGenSrc%2FbbSlicerFiducialRegistration.h;fp=ModuleCall%2FGenSrc%2FbbSlicerFiducialRegistration.h;h=46870b46e885df32ed7112ad46f8f45119d558df;hb=e7b4e2c9254e9e431f74acc92e3f0d40fc5e7ef6;hp=0000000000000000000000000000000000000000;hpb=cd590ce5fff20d69c7060340235a35e9c2a9ef86;p=creaCLI.git diff --git a/ModuleCall/GenSrc/bbSlicerFiducialRegistration.h b/ModuleCall/GenSrc/bbSlicerFiducialRegistration.h new file mode 100644 index 0000000..46870b4 --- /dev/null +++ b/ModuleCall/GenSrc/bbSlicerFiducialRegistration.h @@ -0,0 +1,64 @@ +#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__ + +