1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 07:43:03 +04:00
This commit is contained in:
Elena Gvozdeva
2014-01-28 16:22:42 +04:00
parent 1391ca1da5
commit 0edd0aaf69
3 changed files with 4 additions and 6 deletions
+2 -4
View File
@@ -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