Commit 18ca3d1e authored by Rostislav Vasilikhin's avatar Rostislav Vasilikhin

error message fixed

parent 2457bfc1
......@@ -2408,16 +2408,15 @@ TEST(Imgproc_ColorLab_Full, bitExactness)
{
next = false;
FAIL() << "Bad accuracy" << endl;
FAIL() << "Conversion code: " << names[c] << endl;
FAIL() << "Iteration: " << iter << endl;
FAIL() << "Hash vs Correct hash: " << h << ", " << goodHash << endl;
FAIL() << "Error in: (" << x << ", " << y << ")" << endl;
FAIL() << "Reference value: " << gx[0] << " " << gx[1] << " " << gx[2] << endl;
FAIL() << "Actual value: " << rx[0] << " " << rx[1] << " " << rx[2] << endl;
FAIL() << "Src value: " << px[0] << " " << px[1] << " " << px[2] << endl;
FAIL() << "Size: (" << probe.rows << ", " << probe.cols << ")" << endl;
FAIL() << "Bad accuracy" << endl
<< "Conversion code: " << names[c] << endl
<< "Iteration: " << iter << endl
<< "Hash vs Correct hash: " << h << ", " << goodHash << endl
<< "Error in: (" << x << ", " << y << ")" << endl
<< "Reference value: " << gx[0] << " " << gx[1] << " " << gx[2] << endl
<< "Actual value: " << rx[0] << " " << rx[1] << " " << rx[2] << endl
<< "Src value: " << px[0] << " " << px[1] << " " << px[2] << endl
<< "Size: (" << probe.rows << ", " << probe.cols << ")" << endl;
break;
}
......
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