OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:_t_matrix
(Results
1 - 3
of
3
) sorted by null
/external/opencv3/samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/
PnPProblem.h
37
cv::Mat get_t_matrix() const { return
_t_matrix
; }
48
cv::Mat
_t_matrix
;
member in class:PnPProblem
PnPProblem.cpp
81
_t_matrix
= cv::Mat::zeros(3, 1, CV_64FC1); // translation matrix
125
_t_matrix
= tvec;
128
this->set_P_matrix(_R_matrix,
_t_matrix
);
152
_t_matrix
= tvec; // set translation matrix
154
this->set_P_matrix(_R_matrix,
_t_matrix
); // set rotation-translation matrix
216
cv::Mat X_w = _R_matrix.inv() * ( X_c -
_t_matrix
); // 3x1
219
cv::Mat C_op = cv::Mat(_R_matrix.inv()).mul(-1) *
_t_matrix
; // 3x1
/external/opencv3/doc/tutorials/calib3d/real_time_pose/
real_time_pose.markdown
422
_t_matrix
= cv::Mat::zeros(3, 1, CV_64FC1); // translation matrix
475
_t_matrix
= tvec; // set translation matrix
477
this->set_P_matrix(_R_matrix,
_t_matrix
); // set rotation-translation matrix
[
all
...]
Completed in 61 milliseconds