From dccc10ff122cab89dc2228aa5495153c6a7da19a Mon Sep 17 00:00:00 2001 From: edgarriba Date: Mon, 11 Aug 2014 17:53:43 +0200 Subject: [PATCH] DLS perf --- modules/calib3d/perf/perf_pnp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/calib3d/perf/perf_pnp.cpp b/modules/calib3d/perf/perf_pnp.cpp index 200faa031..5d90c3c6d 100644 --- a/modules/calib3d/perf/perf_pnp.cpp +++ b/modules/calib3d/perf/perf_pnp.cpp @@ -19,7 +19,7 @@ typedef perf::TestBaseWithParam PointsNum; PERF_TEST_P(PointsNum_Algo, solvePnP, testing::Combine( - testing::Values(/*4,*/ 3*9, 7*13), //TODO: find why results on 4 points are too unstable + testing::Values(4, 3*9, 7*13), //TODO: find why results on 4 points are too unstable testing::Values((int)SOLVEPNP_ITERATIVE, (int)SOLVEPNP_EPNP, (int)SOLVEPNP_DLS) ) )