QQ登录

只需一步,快速开始

halcon hysteresis_threshold 函数介绍

[ 复制链接 ]
hysteresis_threshold(Image : RegionHysteresis : Low, High, MaxLength : )

hysteresis_threshold对图像执行磁滞阈值分割(由Canny引入)。
输入图像中灰度值大于或等于High所有点立即被接受(“安全”点)。
相反,所有灰度值小于Low的点立即被拒绝。


如果Low, High两个阈值之间的“潜在”点,
其通过长度最多为MaxLength“潜在”点路径,连接到了“安全”点,则也被接受具。
这意味着“安全”点会影响它们周围的点(滞后)。


例程:
read_image (Image, 'fabrik')
get_image_size (Image, Width, Height)
dev_close_window ()
dev_open_window (0, 0, Width, Height, 'black', WindowID)
dev_set_color ('red')
sobel_amp (Image, EdgeAmplitude, 'thin_sum_abs', 3)
hysteresis_threshold (EdgeAmplitude, RegionHysteresis, 30, 40, 20)
  

halcon从自学到接项目视频教程,另外再赠送全网最全资源  

  

欢迎围观我录制的一套halcon自学视频教程(进入)



回复

使用道具 举报

快速回复 返回列表 客服中心 搜索