Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人可以描述不同的边缘检测算法来检测图像中的边缘及其使用的优缺点。我感兴趣的一些主要算法是:Sobel FuzzyLogic Canny
提前致谢
从应用角度:
Sobel:快速但无法检测到弱边缘,在存在噪声时处理良好
FuzzyLogic:比较慢。需要在存在噪音的情况下进行调整(不确定有多乏味)
Canny:由于非最大抑制和提取大部分边缘的两个阈值处理,到目前为止被认为是好的。在存在噪音的情况下严重失败,需要手动调整参数。
搜索:谷歌学术中的边缘检测,你会得到非常详细的比较。
干杯