Commit 0edd0aaf authored by Elena Gvozdeva's avatar Elena Gvozdeva

fixed

parent 1391ca1d
......@@ -28,7 +28,7 @@ namespace
IMPLEMENT_PARAM_CLASS(DetectShadow, bool)
}
PARAM_TEST_CASE(Mog2, UseGray, DetectShadow, bool)
PARAM_TEST_CASE(Mog2, UseGray, DetectShadow)
{
bool useGray;
bool detectShadow;
......@@ -37,7 +37,6 @@ PARAM_TEST_CASE(Mog2, UseGray, DetectShadow, bool)
{
useGray = GET_PARAM(0);
detectShadow = GET_PARAM(1);
useRoi = GET_PARAM(2);
}
};
......@@ -116,8 +115,7 @@ OCL_TEST_P(Mog2, getBackgroundImage)
OCL_INSTANTIATE_TEST_CASE_P(OCL_Video, Mog2, Combine(
Values(UseGray(true), UseGray(false)),
Values(DetectShadow(true), DetectShadow(false)),
Bool())
Values(DetectShadow(true), DetectShadow(false)))
);
}}// namespace cvtest::ocl
......
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