-4

可能重复:
matchTemplate opencv 无法正常工作,如 opencv 文档中所示

我之前也发布了一些问题,但仍然找不到解决方案。根据我的要求,我必须创建一个扫描纸应用程序。在这种情况下,相机拍照,如果它出现在捕获的图像中,我必须检测模式(这将是预定义的)。我用 matchTemplate(opencv) 尝试过,但没有成功。

由于图像是从相机捕获的,因此捕获图像中的图案可能会比图案图像的大小小或大,所以在这种情况下 matchTemplate 将正常工作,或者如果这不能解决方案,那么我现在应该尝试什么另一种方法。

4

2 回答 2

1

the wrong size of the template is a standard problem of template matching. Since I don t see any example code it is not easy to understand where maybe the real problem of your question is. Did you try different thresholds in the algorithm ? For the theoretical aspect there are two big main problems for feature extraction the size (distance) and the rotation (object orientation). The general hough transformation could be a solution.

于 2012-08-22T13:32:59.570 回答
1

匹配模板不适用于不同的比例(尺寸)。为此,您可以进行多尺度搜索。基本上,您可以在不同比例的输入图像中运行模板匹配。您可以做的另一种方法是训练一个 opencv Haar 级联来检测模板。它内置了多尺度检测。

于 2012-08-22T21:18:45.510 回答