【发布时间】:2018-07-12 21:19:04
【问题描述】:
使用精明的边缘检测和高斯模糊它 detects an edge following this tutorial。然而这里的问题是如何确定它是否真的能够自动找到边缘?与 longest boundary detection after Canny Edge 有关系吗?还是像寻找整个用 0 填充的矩阵一样简单?
【问题讨论】:
标签: scikit-image edge-detection canny-operator
使用精明的边缘检测和高斯模糊它 detects an edge following this tutorial。然而这里的问题是如何确定它是否真的能够自动找到边缘?与 longest boundary detection after Canny Edge 有关系吗?还是像寻找整个用 0 填充的矩阵一样简单?
【问题讨论】:
标签: scikit-image edge-detection canny-operator
在本教程中,调整参数以消除虚假边缘。
如果您只想知道哪些像素是边缘,那“就像查找填充了 0 的整个矩阵一样简单”。如果您需要按顺序使用它们,请使用跟踪算法,例如:http://www.imageprocessingplace.com/downloads_V3/root_downloads/tutorials/contour_tracing_Abeer_George_Ghuneim/alg.html
【讨论】: