Commit c4d434fd authored by Hamdi Sahloul's avatar Hamdi Sahloul Committed by Vadim Pisarevsky

CUDA/BgSegm: fix the threshold of MOG2.Update test when detectShadow=true (#12762)

parent b8aa0cdd
...@@ -110,14 +110,7 @@ CUDA_TEST_P(MOG2, Update) ...@@ -110,14 +110,7 @@ CUDA_TEST_P(MOG2, Update)
mog2_gold->apply(frame, foreground_gold); mog2_gold->apply(frame, foreground_gold);
if (detectShadow) ASSERT_MAT_SIMILAR(foreground_gold, foreground, detectShadow ? 13e-3 : 18e-8);
{
ASSERT_MAT_SIMILAR(foreground_gold, foreground, 1e-2);
}
else
{
ASSERT_MAT_NEAR(foreground_gold, foreground, 0);
}
} }
} }
......
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