diff options
author | Patrick Ruoff <c14-radioactive@19e81ba0-9b1a-49c3-bd6c-561e1906d5fb> | 2012-09-20 15:08:10 +0000 |
---|---|---|
committer | Patrick Ruoff <c14-radioactive@19e81ba0-9b1a-49c3-bd6c-561e1906d5fb> | 2012-09-20 15:08:10 +0000 |
commit | 5da3b245b35cdd2bb4b1490aae81f8d0ff0bde82 (patch) | |
tree | 625b80ab77e3bfc408ea245cffa912affda2a447 /FTNoIR_Tracker_PT/trans_calib.h | |
parent | 13abb65d05e8eebe2438f952cde0867d9b0fa47e (diff) |
corrected vc9 project file debug settings
Tracker_PT: implemented centering
Tracker_PT: implemented new point extraction
Tracker_PT: various bugfixes
git-svn-id: svn+ssh://svn.code.sf.net/p/facetracknoir/code@148 19e81ba0-9b1a-49c3-bd6c-561e1906d5fb
Diffstat (limited to 'FTNoIR_Tracker_PT/trans_calib.h')
-rw-r--r-- | FTNoIR_Tracker_PT/trans_calib.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FTNoIR_Tracker_PT/trans_calib.h b/FTNoIR_Tracker_PT/trans_calib.h index 57b9496c..4024d011 100644 --- a/FTNoIR_Tracker_PT/trans_calib.h +++ b/FTNoIR_Tracker_PT/trans_calib.h @@ -15,7 +15,7 @@ // by recursive least squares /
// kalman filter in information form with identity noise covariance
// measurement equation when head position = t_CH is fixed:
-// (R_CM_k , Id)*(t_MH, -t_CH) = t_CM_k
+// (R_CM_k , Id)*(-t_MH, t_CH) = t_CM_k
class TranslationCalibrator
{
@@ -33,7 +33,7 @@ public: protected:
cv::Matx66f P; // normalized precision matrix = inverse covariance
- cv::Vec6f y; // P*(t_MH, -c)
+ cv::Vec6f y; // P*(-t_MH, t_CH)
};
#endif //TRANSCALIB_H
\ No newline at end of file |