本文主要是介绍HALCON-从入门到入门-XLD的使用-拟合圆,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1.废话
Halcon XLD(eXtended Line Descriptions)是Halcon机器视觉软件中的一个关键概念,主要用于描述亚像素级别的轮廓或多边形。以下是关于Halcon XLD的详细解释:
- 定义与特点:
- XLD是一个轮廓函数,用于表示比像素更精确的亚像素轮廓。它不是基于像素的,而是可以精确到像素内部的一种描述。
- 在Halcon中,XLD常用于表示亚像素的轮廓和多边形。这些轮廓可以通过亚像素阈值分割或亚像素边缘提取等方法获得。
- XLD可以表示直线或多边形,它是一组有序的控制点集合,控制点顺序用于说明彼此相连的关系。
- 分类:
- 闭轮廓:首尾相交的轮廓。
- 开轮廓:首尾不相交的轮廓。
- 应用:
- XLD具有与region相似的多种特征,包括基础特征(如面积、中心、宽高、坐标等)、形状特征(如圆度、紧密度、长度、矩形度等)、云点特征(如云点面积、中心等)和几何特征(如二阶矩等)。
- 可以使用特定的函数(如
select_shape_xld
和select_contours_xld
)来选择具有特定特征的XLD轮廓。
2.实现效果
根据边缘 拟合过渡角圆心大小。
3.代码解析
首先还是读取图片
read_image (Image, 'double_circle')
接着快速滤波
fast_threshold (Image, Region, 0, 120, 7)
然后获取区域边缘
boundary (Region, RegionBorder, 'inner')
裁剪靠近图像边缘的区域
clip_region_rel (RegionBorder, RegionClipped, 5, 5, 5, 5)
接着膨胀这个边缘区域,并获取这个边缘区域内原来图像的像素
dilation_circle (RegionClipped, RegionDilation, 2.5)
reduce_domain (Image, RegionDilation, ImageReduced)
针对这个黑白边缘的像素图像,进行XLD提取
edges_sub_pix (ImageReduced, Edges, 'canny', 2, 20, 60)
按照曲率 将XLD分开成几段
segment_contours_xld (Edges, ContoursSplit, 'lines_circles', 5, 4, 3)
对每一段xld进行圆形拟合
第一段的圆形拟合
第二段的圆形拟合
第三段的圆形拟合
接着显示出来就可以了。
这个案例告诉我们,先通过二值化来确定图像上黑白交界的区域,接着在这个区域内提取出XLD轮廓出来,对于这些轮廓就可以实现拟合圆或者拟合直线之类的技巧了。
4.文件
*
* The edges in the image are segmented into lines and circles.
* For the edges that are part of a circle, the circle parameters
* are estimated and the resulting circle is displayed.
read_image (Image, 'double_circle')
*
* Init window
dev_close_window ()
get_image_size (Image, Width, Height)
dev_open_window (0, 0, Width, Height, 'black', WindowHandle)
*
* Segment a region containing the edges
fast_threshold (Image, Region, 0, 120, 7)
boundary (Region, RegionBorder, 'inner')
clip_region_rel (RegionBorder, RegionClipped, 5, 5, 5, 5)
dilation_circle (RegionClipped, RegionDilation, 2.5)
reduce_domain (Image, RegionDilation, ImageReduced)
*
* In the subdomain of the image containing the edges,
* extract subpixel precise edges.
edges_sub_pix (ImageReduced, Edges, 'canny', 2, 20, 60)
segment_contours_xld (Edges, ContoursSplit, 'lines_circles', 5, 4, 3)
count_obj (ContoursSplit, Number)
dev_display (Image)
dev_set_draw ('margin')
dev_set_color ('white')
dev_update_window ('off')
for I := 1 to Number by 1select_obj (ContoursSplit, ObjectSelected, I)get_contour_global_attrib_xld (ObjectSelected, 'cont_approx', Attrib)* Fit a circle to the line segment that are arcs of a circleif (Attrib > 0)fit_circle_contour_xld (ObjectSelected, 'ahuber', -1, 2, 0, 3, 2, Row, Column, Radius, StartPhi, EndPhi, PointOrder)gen_circle_contour_xld (ContCircle, Row, Column, Radius, 0, rad(360), 'positive', 1.0)dev_display (ContCircle)endif
endfor
dev_set_colored (12)
dev_set_line_width (3)
dev_display (ContoursSplit)
这篇关于HALCON-从入门到入门-XLD的使用-拟合圆的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!