From da4d33ec2699575311474ccb42d4fa456d1fae56 Mon Sep 17 00:00:00 2001 From: Elena Gvozdeva Date: Wed, 15 Jan 2014 10:24:14 +0400 Subject: [PATCH] Fixed test_match_template --- modules/imgproc/test/ocl/test_match_template.cpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/modules/imgproc/test/ocl/test_match_template.cpp b/modules/imgproc/test/ocl/test_match_template.cpp index 2163ac3..48a8027 100644 --- a/modules/imgproc/test/ocl/test_match_template.cpp +++ b/modules/imgproc/test/ocl/test_match_template.cpp @@ -75,20 +75,19 @@ PARAM_TEST_CASE(MatchTemplate, MatDepth, Channels, int, bool) virtual void generateTestData() { Size image_roiSize = randomSize(2, 20); - Size templ_roiSize = Size (randomInt(1,image_roiSize.width), randomInt(1,image_roiSize.height)); + Size templ_roiSize = Size(randomInt(1,image_roiSize.width), randomInt(1,image_roiSize.height)); Size result_roiSize = Size(image_roiSize.width - templ_roiSize.width + 1, image_roiSize.height - templ_roiSize.height + 1); const double upValue = 256; - const double max_val = 100; - Border imageBorder = randomBorder(0, use_roi ? max_val : 0); + Border imageBorder = randomBorder(0, use_roi ? MAX_VALUE : 0); randomSubMat(image, image_roi, image_roiSize, imageBorder, type, -upValue, upValue); - Border templBorder = randomBorder(0, use_roi ? max_val : 0); + Border templBorder = randomBorder(0, use_roi ? MAX_VALUE : 0); randomSubMat(templ, templ_roi, templ_roiSize, templBorder, type, -upValue, upValue); - Border resultBorder = randomBorder(0, use_roi ? max_val : 0); + Border resultBorder = randomBorder(0, use_roi ? MAX_VALUE : 0); randomSubMat(result, result_roi, result_roiSize, resultBorder, CV_32F, -upValue, upValue); UMAT_UPLOAD_INPUT_PARAMETER(image) -- 2.7.4