mirror of
https://github.com/opencv/opencv.git
synced 2025-06-11 20:09:23 +08:00
test: fix min/max name mismatching
This commit is contained in:
parent
cea0e94376
commit
dd304dbe05
@ -447,8 +447,8 @@ OCL_TEST_P(Min, Mat)
|
||||
{
|
||||
generateTestData();
|
||||
|
||||
OCL_OFF(cv::max(src1_roi, src2_roi, dst1_roi));
|
||||
OCL_ON(cv::max(usrc1_roi, usrc2_roi, udst1_roi));
|
||||
OCL_OFF(cv::min(src1_roi, src2_roi, dst1_roi));
|
||||
OCL_ON(cv::min(usrc1_roi, usrc2_roi, udst1_roi));
|
||||
Near(0);
|
||||
}
|
||||
}
|
||||
@ -461,8 +461,8 @@ OCL_TEST_P(Max, Mat)
|
||||
{
|
||||
generateTestData();
|
||||
|
||||
OCL_OFF(cv::min(src1_roi, src2_roi, dst1_roi));
|
||||
OCL_ON(cv::min(usrc1_roi, usrc2_roi, udst1_roi));
|
||||
OCL_OFF(cv::max(src1_roi, src2_roi, dst1_roi));
|
||||
OCL_ON(cv::max(usrc1_roi, usrc2_roi, udst1_roi));
|
||||
Near(0);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user