Halcon 边缘检测与合并(边缘检测,边缘分割,边缘合并,边缘筛选)

请添加图片描述

图片下载

链接:https://pan.baidu.com/s/188kLS5w2bw0OeYeYeRkNEA
提取码:p4eh

代码


* 1.加载图片 ***************************************************
dev_close_window ()
read_image (Image, './pads')
get_image_size (Image, Width, Height)
dev_open_window (0, 0, Width, Height, 'black', WindowHandle)
dev_set_colored (12)
dev_set_draw ('margin')
dev_display (Image)


* 2.XLD检测与合并 ***************************************************
Border := 35
rectangle1_domain (Image, ImageReduced, Border, Border, 576 - Border, 768 - Border)

* 边缘检测
* edges_sub_pix (ImageReduced, Edges, 'lanser2', 0.16, 3, 5)
edges_sub_pix (ImageReduced, Edges, 'canny', 5, 3, 5)
* 边缘分割
segment_contours_xld (Edges, ContoursSplit, 'lines', 5, 4, 2)
* 边缘筛选
select_contours_xld (ContoursSplit, SelectedContours, 'contour_length', 20, Width / 2, -0.5, 0.5)
* 边缘 直线连接(合并)
union_collinear_contours_xld (SelectedContours, UnionContours, 10, 1, 8, 0.4, 'attr_keep')
* 二次筛选
select_contours_xld (UnionContours, SelectedContours1, 'contour_length', 50, 10000, -0.5, 0.5)

* 显示边缘
dev_display (Image)
dev_display (SelectedContours1)
stop ()

* 3.拟合成 外接矩形 ***************************************************
* 四角链接
union_adjacent_contours_xld (SelectedContours1, UnionContours1, 20, 1, 'attr_keep')
* 最小外接矩形
smallest_rectangle2_xld (UnionContours1, Row, Column, Phi, Length1, Length2)
* 生成矩形
gen_rectangle2 (Rectangle, Row, Column, Phi, Length1, Length2)
* 显示结果
dev_display (Image)
dev_display (Rectangle)
stop ()

* 4.拟合成直线xld ***************************************************
dev_display (Image)
* 拟合成直线
fit_line_contour_xld (SelectedContours1, 'tukey', -1, 0, 5, 2, RowBegin, ColBegin, RowEnd, ColEnd, Nr, Nc, Dist)
for i := 0 to |RowBegin| - 1 by 1
    * 生成直线
    gen_contour_polygon_xld (Contour, [RowBegin[i],RowEnd[i]], [ColBegin[i],ColEnd[i]])
    * 显示xld
    dev_display (Contour)
endfor

处理结果

请添加图片描述

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

廷益--飞鸟

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值