Unverified Commit eae62447 authored by Alexander Alekhin's avatar Alexander Alekhin Committed by GitHub

Merge pull request #1876 from tomoaki0705:fixRgbdTestFailure

parents 41e99fcc 8aaa91c3
......@@ -211,7 +211,7 @@ protected:
std::cout << std::endl << "*** FALS" << std::endl;
errors[0][0] = 0.006f;
errors[0][1] = 0.03f;
errors[1][0] = 0.00008f;
errors[1][0] = 0.0001f;
errors[1][1] = 0.02f;
break;
case 1:
......
......@@ -217,7 +217,7 @@ void CV_OdometryTest::generateRandomTransformation(Mat& rvec, Mat& tvec)
normalize(rvec, rvec, rng.uniform(0.007f, maxRotation));
randu(tvec, Scalar(-1000), Scalar(1000));
normalize(tvec, tvec, rng.uniform(0.007f, maxTranslation));
normalize(tvec, tvec, rng.uniform(0.008f, maxTranslation));
}
void CV_OdometryTest::run(int)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment