]> Creatis software - creaRigidRegistration.git/blobdiff - PackRecalage/src/bbPackRecalageCalculateVectorBox.h
Added Image Recalage Properties
[creaRigidRegistration.git] / PackRecalage / src / bbPackRecalageCalculateVectorBox.h
index ed04a3905af2a9701e4d428ff6168473955ac1f3..0e0a8deb95cf61e6b894ec01a955c63c38a80113 100644 (file)
@@ -42,17 +42,28 @@ class bbPackRecalage_EXPORT CalculateVectorBox
   /*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<int>);
 
-  /**/
+  /*Origin (starting point of the vector) of the first image, this is necesary for the imageReslicer filter*/
   BBTK_DECLARE_OUTPUT(OriginReslicer, std::vector<int>);
+  
+  /*The rotation axis (this axis is defined by the cross product of the 2 vectors)*/
   BBTK_DECLARE_OUTPUT(TransformAxis, std::vector<double>);
+
+  /*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:
+         
          VectorMath *_vector;
 };