resize function signature refactoring

This commit is contained in:
Marina Kolpakova
2012-06-18 09:00:28 +00:00
parent e69c6fdef4
commit 9a9f212db0
3 changed files with 4 additions and 4 deletions

View File

@@ -189,7 +189,7 @@ TEST_P(ResizeArea, Accuracy)
cv::gpu::GpuMat dst = createMat(cv::Size(cv::saturate_cast<int>(src.cols * coeff), cv::saturate_cast<int>(src.rows * coeff)), type, useRoi);
cv::gpu::GpuMat buffer = createMat(cv::Size(dst.cols, src.rows), CV_32FC1);
cv::gpu::resize(loadMat(src, useRoi), dst, cv::Size(), buffer, coeff, coeff, interpolation);
cv::gpu::resize(loadMat(src, useRoi), dst, buffer, cv::Size(), coeff, coeff, interpolation);
cv::Mat dst_cpu;