如何在opencv python中使用边缘检测返回边数?

时间:2018-03-26 03:50:31

标签: opencv image-processing edge-detection

嗨我有以下图片,如何使用边缘检测返回等于4的结果?

enter image description here

以下是原始图片链接: https://1drv.ms/u/s!An0pWQPDB_ImjGu_nQGSvG3fUBPS

enter image description here

1 个答案:

答案 0 :(得分:1)

我认为你的例子就是像Harris算法那样寻找角点检测。 边缘检测会匹配太多边缘。

角点检测的一般信息:Corner Detection on Wikipedia

对于OpenCV:Harris Corner Detection