HomeSort by relevance Sort by last modified time
    Searched full:cameramatrix (Results 26 - 34 of 34) sorted by null

12

  /external/opencv3/modules/calib3d/src/
p3p.cpp 16 p3p::p3p(cv::Mat cameraMatrix)
18 if (cameraMatrix.depth() == CV_32F)
19 init_camera_parameters<float>(cameraMatrix);
21 init_camera_parameters<double>(cameraMatrix);
upnp.cpp 55 upnp::upnp(const Mat& cameraMatrix, const Mat& opoints, const Mat& ipoints)
57 if (cameraMatrix.depth() == CV_32F)
58 init_camera_parameters<float>(cameraMatrix);
60 init_camera_parameters<double>(cameraMatrix);
  /external/opencv/cv/src/
cvcalibration.cpp     [all...]
  /external/opencv3/modules/java/src/
imgproc.cpp     [all...]
  /external/opencv3/modules/core/include/opencv2/core/
persistence.hpp 134 Mat cameraMatrix = (Mat_<double>(3,3) << 1000, 0, 320, 0, 1000, 240, 0, 0, 1);
136 fs << "cameraMatrix" << cameraMatrix << "distCoeffs" << distCoeffs;
161 cameraMatrix: !!opencv-matrix
236 fs2["cameraMatrix"] >> cameraMatrix2;
    [all...]
types_c.h 416 CV_MAT_ELEM(cameraMatrix, float, 0, 2) = image.width*0.5f;
    [all...]
  /external/opencv3/modules/imgproc/include/opencv2/
imgproc.hpp     [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
RVCVXCheckAnalyzer.java 326 private static Mat cameraMatrix(float f, Size center) {
817 Mat camMat = cameraMatrix(fc, new Size(frameSize.width/2, frameSize.height/2));
    [all...]
  /external/opencv3/doc/tutorials/calib3d/camera_calibration/
camera_calibration.markdown 208 double rms = calibrateCamera(objectPoints, imagePoints, imageSize, cameraMatrix,

Completed in 499 milliseconds

12