added first version of gpu::matchTemplate, currently it works only with 8UC1 images and SQDIFF method

This commit is contained in:
Alexey Spizhevoy
2010-12-06 14:19:41 +00:00
parent 8891acb67a
commit 50167f6c26
8 changed files with 323 additions and 5 deletions

View File

@@ -656,6 +656,10 @@ namespace cv
CV_EXPORTS void cornerMinEigenVal(const GpuMat& src, GpuMat& dst, int blockSize, int ksize, int borderType=BORDER_REFLECT101);
//! computes the proximity map for the raster template and the image where the template is searched for
CV_EXPORTS void matchTemplate(const GpuMat& image, const GpuMat& templ, GpuMat& result, int method);
//////////////////////////////// Filter Engine ////////////////////////////////
/*!