Commit 183e13b3 authored by Marina Kolpakova's avatar Marina Kolpakova

fixed build without CUDA

parent 76f49f30
...@@ -56,8 +56,8 @@ void cv::gpu::resize(const GpuMat& src, GpuMat& dst, Size dsize, double fx, doub ...@@ -56,8 +56,8 @@ void cv::gpu::resize(const GpuMat& src, GpuMat& dst, Size dsize, double fx, doub
throw_nogpu(); throw_nogpu();
} }
void cv::gpu::resize(const GpuMat& src, GpuMat& dst, Size dsize, double fx, double fy, void cv::gpu::resize(const GpuMat& src, GpuMat& dst, Size dsize, GpuMat& buffer,
int interpolation, const GpuMat& buffer, Stream& s) double fx, double fy, int interpolation, Stream& s)
{ {
(void)src; (void)src;
(void)dst; (void)dst;
......
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