fixed compilation without CUDA
authorAnatoly Baksheev <no@email>
Mon, 8 Oct 2012 17:48:56 +0000 (21:48 +0400)
committerAnatoly Baksheev <no@email>
Mon, 8 Oct 2012 17:49:40 +0000 (21:49 +0400)
modules/gpu/src/denoising.cpp

index b140011..6c7a669 100644 (file)
@@ -51,6 +51,10 @@ void cv::gpu::bilateralFilter(const GpuMat&, GpuMat&, int, float, float, int, St
 void cv::gpu::nonLocalMeans(const GpuMat&, GpuMat&, float, int, int, int, Stream&) { throw_nogpu(); }
 void cv::gpu::fastNlMeansDenoising( const GpuMat&, GpuMat&, float, int, int, Stream&) { throw_nogpu(); }
 
+void cv::gpu::FastNonLocalMeansDenoising::simpleMethod(const GpuMat&, GpuMat&, float, int, int, Stream&) { throw_nogpu(); }
+void cv::gpu::FastNonLocalMeansDenoising::labMethod( const GpuMat&, GpuMat, float, float, int, int, Stream&) { throw_nogpu(); }
+
+
 #else
 
 //////////////////////////////////////////////////////////////////////////////////