HomeSort by relevance Sort by last modified time
    Searched refs:_tvec (Results 1 - 5 of 5) sorted by null

  /external/opencv3/modules/calib3d/src/
solvepnp.cpp 57 OutputArray _rvec, OutputArray _tvec, bool useExtrinsicGuess, int flags )
69 int rtype = _rvec.type(), ttype = _tvec.type();
70 Size rsize = _rvec.size(), tsize = _tvec.size();
79 _tvec.create(3, 1, CV_64F);
82 tvec = _tvec.getMat();
130 Mat R, rvec = _rvec.getMat(), tvec = _tvec.getMat();
140 Mat R, rvec = _rvec.getMat(), tvec = _tvec.getMat();
156 bool _useExtrinsicGuess=false, Mat _rvec=Mat(), Mat _tvec=Mat() )
158 rvec(_rvec), tvec(_tvec) {}
185 Mat _tvec = model.col(1) local
    [all...]
fisheye.hpp 23 cv::InputArray _rvec,cv::InputArray _tvec,
fisheye.cpp 69 InputArray _tvec, InputArray _K, InputArray _D, double alpha, OutputArray jacobian)
77 CV_Assert(_tvec.total() * _tvec.channels() == 3 && (_tvec.depth() == CV_32F || _tvec.depth() == CV_64F));
78 CV_Assert(_tvec.getMat().isContinuous() && _rvec.getMat().isContinuous());
81 Vec3d T = _tvec.depth() == CV_32F ? (Vec3d)*_tvec.getMat().ptr<Vec3f>() : *_tvec.getMat().ptr<Vec3d>();
609 InputArray _R, InputArray _tvec, OutputArray R1, OutputArray R2, OutputArray P1, OutputArray P2
    [all...]
calibration.cpp     [all...]
  /external/opencv3/modules/calib3d/test/
test_cameracalibration.cpp 1236 CvMat _rvec = rvec, _tvec = tvec, _cameraMatrix = cameraMatrix, _distCoeffs = distCoeffs; local
    [all...]

Completed in 74 milliseconds