added missing gpu::matchTemplate implementation for non-CUDA build

pull/1412/head
Vladislav Vinogradov 12 years ago
parent ff1eb0d582
commit c439702f0c
  1. 1
      modules/gpu/src/match_template.cpp

@ -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

Loading…
Cancel
Save