1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-21 19:33:03 +04:00

3d(test): change tolerance of Volume/VolumeTestFixture.valid_points

This commit is contained in:
Alexander Alekhin
2023-01-30 05:27:02 +00:00
parent 1d530eb2e2
commit 3c8e97ff6a
+5 -4
View File
@@ -1114,12 +1114,13 @@ void VolumeTestFixture::valid_points_test()
displayImage(depth, points2, normals2, depthFactor, lightPose);
}
// TODO: why profile == 2*enface ?
float percentValidity = float(enface) / float(profile);
ASSERT_GT(profile, 0) << "There are no points in profile";
ASSERT_GT(enface, 0) << "There are no points in enface";
ASSERT_LT(abs(0.5 - percentValidity), 0.05) << "percentValidity should be in range 45-55%, but it's " << percentValidity*100.f << "%";
// TODO: why profile == 2*enface ?
float percentValidity = float(enface) / float(profile) * 100;
ASSERT_NEAR(percentValidity, 50, 6);
}
TEST_P(VolumeTestFixture, valid_points)