/* # --------------------------------------------------------------------- # # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image # pour la Santé) # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton # # This software is governed by the CeCILL-B license under French law and # abiding by the rules of distribution of free software. You can use, # modify and/ or redistribute the software under the terms of the CeCILL-B # license as circulated by CEA, CNRS and INRIA at the following URL # http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html # or in the file LICENSE.txt. # # As a counterpart to the access to the source code and rights to copy, # modify and redistribute granted by the license, users are provided only # with a limited warranty and the software's author, the holder of the # economic rights, and the successive licensors have only limited # liability. # # The fact that you are presently reading this means that you have had # knowledge of the CeCILL-B license and that you accept its terms. # ------------------------------------------------------------------------ */ #ifndef __bbPackRecalageCalculateVectorBox_h_INCLUDED__ #define __bbPackRecalageCalculateVectorBox_h_INCLUDED__ #include "bbPackRecalage_EXPORT.h" #include "bbtkAtomicBlackBox.h" #include "iostream" #include "PlanesOperations.h" namespace bbPackRecalage { class bbPackRecalage_EXPORT CalculateVectorBox : public bbtk::AtomicBlackBox { BBTK_BLACK_BOX_INTERFACE(CalculateVectorBox,bbtk::AtomicBlackBox); /*Points in X for the first vector (the vector in the first image), this array should have the structure (a,b), "a" being the position in X for the starting point of the vector and "b" the position in X for the ending point of the vector */ BBTK_DECLARE_INPUT(PointsX1,std::vector); /*Points in X for the second vector (the vector in the second image), this array should have the structure (a,b), "a" being the position in X for the starting point of the vector and "b" the position in X for the ending point of the vector */ BBTK_DECLARE_INPUT(PointsX2,std::vector); /*Points in Y for the first vector (the vector in the first image), this array should have the structure (a,b), "a" being the position in Y for the starting point of the vector and "b" the position in Y for the ending point of the vector */ BBTK_DECLARE_INPUT(PointsY1,std::vector); /*Points in Y for the second vector (the vector in the second image), this array should have the structure (a,b), "a" being the position in Y for the starting point of the vector and "b" the position in Y for the ending point of the vector */ BBTK_DECLARE_INPUT(PointsY2,std::vector); /*Points in Z for the first vector (the vector in the first image), this array should have the structure (a,b), "a" being the position in Z for the starting point of the vector and "b" the position in Z for the ending point of the vector */ BBTK_DECLARE_INPUT(PointsZ1,std::vector); /*Points in Z for the second vector (the vector in the second image), this array should have the structure (a,b), "a" being the position in Z for the starting point of the vector and "b" the position in Z for the ending point of the vector */ BBTK_DECLARE_INPUT(PointsZ2,std::vector); /*Origin (starting point of the vector) of the second image, this is necesary for the translation matrix of a transform filter*/ BBTK_DECLARE_OUTPUT(Origin, std::vector); /*Origin (starting point of the vector) of the first image, this is necesary for the imageReslicer filter*/ BBTK_DECLARE_OUTPUT(OriginReslicer, std::vector); /*The rotation axis (this axis is defined by the cross product of the 2 vectors)*/ BBTK_DECLARE_OUTPUT(TransformAxis, std::vector); /*Scale difference in X*/ BBTK_DECLARE_OUTPUT(OutScaleX,int); /*Scale difference in Y*/ BBTK_DECLARE_OUTPUT(OutScaleY,int); /*Scale difference in Z*/ BBTK_DECLARE_OUTPUT(OutScaleZ,int); /*Rotation Angle*/ BBTK_DECLARE_OUTPUT(OutAngle,double); BBTK_PROCESS(Process); void Process(); private: PlanesOperations *_vector; }; BBTK_BEGIN_DESCRIBE_BLACK_BOX(CalculateVectorBox,bbtk::AtomicBlackBox); BBTK_NAME("CalculateVectorBox"); BBTK_AUTHOR("jn.trillos44@uniandes.edu.co"); BBTK_DESCRIPTION("Box for calculating the cross and point multiplications of 2 vectors"); BBTK_CATEGORY("__CATEGORY__"); BBTK_INPUT(CalculateVectorBox,PointsX1,"List of points in X for the first vector",std::vector,""); BBTK_INPUT(CalculateVectorBox,PointsX2,"List of points in X for the second vector",std::vector,""); BBTK_INPUT(CalculateVectorBox,PointsY1,"List of points in Y for the first vector",std::vector,""); BBTK_INPUT(CalculateVectorBox,PointsY2,"List of points in Y for the second vector",std::vector,""); BBTK_INPUT(CalculateVectorBox,PointsZ1,"List of points in Z for the first vector",std::vector,""); BBTK_INPUT(CalculateVectorBox,PointsZ2,"List of points in Z for the second vector",std::vector,""); BBTK_OUTPUT(CalculateVectorBox,Origin,"Points of Origin for the transformation",std::vector,""); BBTK_OUTPUT(CalculateVectorBox,OriginReslicer,"Points of Origin for the transformation for the Reslicer",std::vector,""); BBTK_OUTPUT(CalculateVectorBox,TransformAxis,"Axis used for the transformation (Result of Cross multiplication)",std::vector,""); BBTK_OUTPUT(CalculateVectorBox,OutScaleX,"Difference in scale for X for the cross multiplication",int,""); BBTK_OUTPUT(CalculateVectorBox,OutScaleY,"Difference in scale for Y for the cross multiplication",int,""); BBTK_OUTPUT(CalculateVectorBox,OutScaleZ,"Difference in scale for Z for the cross multiplication",int,""); BBTK_OUTPUT(CalculateVectorBox,OutAngle,"Angle that represents the dot multiplication",double,""); BBTK_END_DESCRIBE_BLACK_BOX(CalculateVectorBox); } // EO namespace bbPackRecalage #endif // __bbPackRecalageCalculateVectorBox_h_INCLUDED__