Commit 8c5e19c2 authored by Elena Gvozdeva's avatar Elena Gvozdeva

fixed pref test

parent b4652e2c
...@@ -27,9 +27,9 @@ namespace ocl { ...@@ -27,9 +27,9 @@ namespace ocl {
Size tmplSz = get<1>(GetParam()); Size tmplSz = get<1>(GetParam());
int method = get<2>(GetParam()); int method = get<2>(GetParam());
Mat img(imgSz, CV_8UC1); UMat img(imgSz, CV_8UC1);
Mat tmpl(tmplSz, CV_8UC1); UMat tmpl(tmplSz, CV_8UC1);
Mat result(imgSz - tmplSz + Size(1,1), CV_32F); UMat result(imgSz - tmplSz + Size(1,1), CV_32F);
declare declare
.in(img, WARMUP_RNG) .in(img, WARMUP_RNG)
......
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