Merge pull request #1412 from jet47:gpu-match-template-nocuda

This commit is contained in:
Roman Donchenko 2013-09-09 16:49:33 +04:00 committed by OpenCV Buildbot
commit 531471b0aa

View File

@ -49,6 +49,7 @@ using namespace std;
#if !defined (HAVE_CUDA) || defined (CUDA_DISABLER)
void cv::gpu::matchTemplate(const GpuMat&, const GpuMat&, GpuMat&, int, Stream&) { throw_nogpu(); }
void cv::gpu::matchTemplate(const GpuMat&, const GpuMat&, GpuMat&, int, MatchTemplateBuf&, Stream&) { throw_nogpu(); }
#else