“明显的边缘”检测以获取距离

时间:2019-03-17 23:16:49

标签: php python node.js machine-learning canny-operator

我正在寻找一种使用Python,php或javascript解决以下问题的方法。

我想知道什么方法/算法/机器学习模型 用于使我步入正轨 并能够检测到这些粉红色的边缘,然后确定距离。

Canny边缘检测是一种好方法吗? 或超等高线图?

我现在不知道了。

这是我要实现的目标的说明

enter image description here

1 个答案:

答案 0 :(得分:0)

相似的 OpenCV 轮廓检测是解决之道。

看起来并不像一个开始那么糟糕:

enter image description here

第一步使用

ret,thresh1 = cv2.threshold(img,220,255,cv2.THRESH_BINARY)
ret,thresh2 = cv2.threshold(img,220,255,cv2.THRESH_BINARY_INV)