From 43f2682e159f9e3ccb694312b2f019b89f6ee53c Mon Sep 17 00:00:00 2001 From: Marina Kolpakova Date: Wed, 20 Jun 2012 07:30:19 +0000 Subject: [PATCH] fixed build without CUDA --- modules/gpu/src/resize.cpp | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/modules/gpu/src/resize.cpp b/modules/gpu/src/resize.cpp index 626f5aa..241068d 100644 --- a/modules/gpu/src/resize.cpp +++ b/modules/gpu/src/resize.cpp @@ -56,20 +56,6 @@ void cv::gpu::resize(const GpuMat& src, GpuMat& dst, Size dsize, double fx, doub throw_nogpu(); } -void cv::gpu::resize(const GpuMat& src, GpuMat& dst,GpuMat& buffer, Size dsize, - double fx, double fy, int interpolation, Stream& s) -{ - (void)src; - (void)dst; - (void)dsize; - (void)fx; - (void)fy; - (void)interpolation; - (void)buffer; - (void)s; - - throw_nogpu(); -} #else // HAVE_CUDA -- 2.7.4