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

  /external/opencv3/modules/calib3d/perf/
perf_pnp.cpp 13 CV_ENUM(pnpAlgo, SOLVEPNP_ITERATIVE, SOLVEPNP_EPNP, SOLVEPNP_P3P, SOLVEPNP_DLS, SOLVEPNP_UPNP)
23 testing::Values((int)SOLVEPNP_ITERATIVE, (int)SOLVEPNP_EPNP, (int)SOLVEPNP_UPNP, (int)SOLVEPNP_DLS)
  /external/opencv3/modules/calib3d/src/
solvepnp.cpp 64 if( flags != SOLVEPNP_ITERATIVE )
113 else if (flags == SOLVEPNP_ITERATIVE)
146 CV_Error(CV_StsBadArg, "The flags argument must be one of SOLVEPNP_ITERATIVE, SOLVEPNP_P3P, SOLVEPNP_EPNP or SOLVEPNP_DLS");
155 PnPRansacCallback(Mat _cameraMatrix=Mat(3,3,CV_64F), Mat _distCoeffs=Mat(4,1,CV_64F), int _flags=SOLVEPNP_ITERATIVE,
  /external/opencv3/modules/calib3d/include/opencv2/
calib3d.hpp 191 enum { SOLVEPNP_ITERATIVE = 0,
490 @param useExtrinsicGuess Parameter used for SOLVEPNP_ITERATIVE. If true (1), the function uses
494 - **SOLVEPNP_ITERATIVE** Iterative method is based on Levenberg-Marquardt optimization. In
531 bool useExtrinsicGuess = false, int flags = SOLVEPNP_ITERATIVE );
546 @param useExtrinsicGuess Parameter used for SOLVEPNP_ITERATIVE. If true (1), the function uses
572 OutputArray inliers = noArray(), int flags = SOLVEPNP_ITERATIVE );
    [all...]
  /external/opencv3/modules/calib3d/test/
test_solvepnp_ransac.cpp 57 eps[SOLVEPNP_ITERATIVE] = 1.0e-2;
201 eps[SOLVEPNP_ITERATIVE] = 1.0e-6;
  /external/opencv3/samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/
main_registration.cpp 171 bool is_correspondence = pnp_registration.estimatePose(list_points3d, list_points2d, SOLVEPNP_ITERATIVE);
main_detection.cpp 61 int pnpMethod = SOLVEPNP_ITERATIVE;
  /external/opencv3/modules/java/src/
calib3d+Calib3d.java 38 SOLVEPNP_ITERATIVE = 0,
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)
424 // C++: bool solvePnPRansac(vector_Point3f objectPoints, vector_Point2f imagePoints, Mat cameraMatrix, vector_double distCoeffs, Mat& rvec, Mat& tvec, bool useExtrinsicGuess = false, int iterationsCount = 100, float reprojectionError = 8.0, double confidence = 0.99, Mat& inliers = Mat(), int flags = SOLVEPNP_ITERATIVE)
    [all...]
  /cts/apps/CtsVerifier/libs/
opencv3-android.jar 

Completed in 803 milliseconds