From: Elena Gvozdeva Date: Wed, 15 Jan 2014 06:24:14 +0000 (+0400) Subject: Fixed test_match_template X-Git-Tag: submit/tizen_ivi/20141117.190038~2^2~694^2~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=da4d33ec2699575311474ccb42d4fa456d1fae56;p=profile%2Fivi%2Fopencv.git Fixed test_match_template --- 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)