我正在尝试确定图像的一部分是否存在于另一个图像中。见下图:
Full Image
second part of image that i want to check if he existing in the full image:
如果第二部分存在于完整图像中,则该函数应返回 true
如果它存在,那么它应该在包含的 UIImageView 上绘制一个层,概述它所在的位置。
我已经完成了找到一个矩形并将图层对象放在同一个上,但在扫描另一个图像的图像时卡住了。
(我想检查部分图像是否存在于另一个图像中)。
谁能帮帮我
Best Answer-推荐答案 strong>
听起来好像您需要实现模板匹配。
OpenCV 是完成这项工作的好工具。这是一个教程:
http://docs.opencv.org/doc/tutorials/imgproc/histograms/template_matching/template_matching.html
强烈推荐 - 通过 cocoaPods 安装 openCV 以节省 headache .
关于ios - 检查图像的一部分是否存在于另一个图像中 iOS(图像处理),我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/27942432/
|