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

  /external/opencv3/modules/calib3d/perf/
perf_pnp.cpp 20 PERF_TEST_P(PointsNum_Algo, solvePnP,
58 solvePnP(points3d, points2d, intrinsics, distortion, rvec, tvec, false, algo);
105 solvePnP(points3d, points2d, intrinsics, distortion, rvec, tvec, false, algo);
  /external/opencv3/modules/calib3d/src/
solvepnp.cpp 55 bool solvePnP( InputArray _opoints, InputArray _ipoints,
166 bool correspondence = solvePnP( _m1, _m2, cameraMatrix, distCoeffs,
282 result = solvePnP(opoints_inliers, ipoints_inliers, cameraMatrix,
  /external/opencv3/modules/calib3d/test/
test_solvepnp_ransac.cpp 240 solvePnP(opoints, projectedPoints, intrinsics, distCoeffs, rvec, tvec,
367 solvePnP(p3d, p2d, cameraIntrinsic, noArray(), rvec, tvec, true);
373 solvePnP(p3d, p2d, cameraIntrinsic, noArray(), rvec, tvec, true);
377 solvePnP(p3d, p2d, cameraIntrinsic, noArray(), rvec, tvec, false);
test_cameracalibration_artificial.cpp 359 ts->printf( cvtest::TS::LOG, "%d) Testing solvePnP...\n", r);
363 solvePnP(Mat(objectPoints[i]), Mat(imagePoints[i]), camMat, distCoeffs, rvecs_spnp[i], tvecs_spnp[i]);
  /external/opencv3/samples/python2/
plane_ar.py 8 tracked by PlaneTracker from plane_tracker.py. solvePnP funciton is used to
91 ret, rvec, tvec = cv2.solvePnP(quad_3d, tracked.quad, K, dist_coef)
  /external/opencv3/modules/cudalegacy/src/
calib3d.cpp 184 solvePnP(object_subset, image_subset, *camera_mat, *dist_coef, rot_vec, transl_vec);
  /external/opencv3/samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/
PnPProblem.cpp 120 bool correspondence = cv::solvePnP( list_points3d, list_points2d, _A_matrix, distCoeffs, rvec, tvec,
  /external/opencv3/modules/calib3d/include/opencv2/
calib3d.hpp 255 optimization procedures like calibrateCamera, stereoCalibrate, or solvePnP .
462 calibrateCamera, solvePnP, and stereoCalibrate . The function itself can also be used to compute a
515 - An example of how to use solvePnP for planar augmented reality can be found at
518 - Numpy array slices won't work as input because solvePnP requires contiguous
520 modules/calib3d/src/solvepnp.cpp version 2.4.9)
522 to its calling of cv::undistortPoints (around line 75 of modules/calib3d/src/solvepnp.cpp version 2.4.9)
528 CV_EXPORTS_W bool solvePnP( InputArray objectPoints, InputArray imagePoints,
555 @param flags Method for solving a PnP problem (see solvePnP ).
    [all...]
  /external/opencv3/modules/calib3d/misc/java/test/
Calib3dTest.java 522 Calib3d.solvePnP(points3d, points2d, intrinsics, new MatOfDouble(), rvec, tvec);
  /external/opencv3/samples/cpp/
select3dobj.cpp 564 solvePnP(Mat(boardPoints), Mat(foundBoardCorners), cameraMatrix,
  /external/opencv3/modules/java/src/
calib3d+Calib3d.java 397 // C++: bool solvePnP(vector_Point3f objectPoints, vector_Point2f imagePoints, Mat cameraMatrix, vector_double distCoeffs, Mat& rvec, Mat& tvec, bool useExtrinsicGuess = false, int flags = SOLVEPNP_ITERATIVE)
400 //javadoc: solvePnP(objectPoints, imagePoints, cameraMatrix, distCoeffs, rvec, tvec, useExtrinsicGuess, flags)
401 public static boolean solvePnP(MatOfPoint3f objectPoints, MatOfPoint2f imagePoints, Mat cameraMatrix, MatOfDouble distCoeffs, Mat rvec, Mat tvec, boolean useExtrinsicGuess, int flags)
411 //javadoc: solvePnP(objectPoints, imagePoints, cameraMatrix, distCoeffs, rvec, tvec)
412 public static boolean solvePnP(MatOfPoint3f objectPoints, MatOfPoint2f imagePoints, Mat cameraMatrix, MatOfDouble distCoeffs, Mat rvec, Mat tvec)
    [all...]
calib3d.cpp     [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
RVCVXCheckAnalyzer.java 866 Calib3d.solvePnP(grid, centers, camMat, coeff, rvec, tvec,
877 // reproject points to for evaluation of result accuracy of solvePnP
    [all...]
  /cts/apps/CtsVerifier/libs/
opencv3-android.jar 

Completed in 777 milliseconds