*读取图像
read_image (Image, 'pcb')
*关闭已经打开的窗口
dev_close_window ()
*获取图像大小
get_image_size (Image, Width, Height)
*打开新的窗口
dev_open_window (0, 0, Width, Height, 'black', WindowHandle)
*显示图像
dev_display (Image)
*执行灰度开运算
gray_opening_shape (Image, ImageOpening, 7, 7, 'octagon')
*执行灰度闭运算
gray_closing_shape (Image, ImageClosing, 7, 7, 'octagon')
*局部阈值操作,分割出电路断线
dyn_threshold (ImageOpening, ImageClosing, RegionDynThresh, 75, 'not_equal')
*显示图像
dev_display (Image)
*设置输出对象的显示颜色
dev_set_color ('red')
*设置区域的填充方式
dev_set_draw ('margin')
*显示电路断线区域
dev_display (RegionDynThresh)
halcon 电路板短路,断路检测
于 2022-01-22 22:45:08 首次发布