QQ登录

只需一步,快速开始

5.4 halcon 实现金属零件轮廓检测

[ 复制链接 ]
当前帖子实现金属零件轮廓的检测。
实现方法和前面帖子类似,读入图像后进行亚像素 边缘提取
进行直线,圆,椭圆拟合,使用拟合得到的几何参数生成对应几何图形。
同样也是使用亚像素级别的精度,
具体实现 代码和注释如下:

5.4 halcon 实现金属零件轮廓检测

5.4 halcon 实现金属零件轮廓检测

  1. dev_close_window ()
  2. dev_update_window ('off')
  3. *步骤1,读入图片
  4. read_image (Image, 'metal-parts/metal-parts-01')
  5. get_image_size (Image, Width, Height)
  6. dev_open_window_fit_image (Image, 0, 0, Width, Width, WindowID)
  7. set_display_font (WindowID, 14, 'mono', 'true', 'false')
  8. dev_set_draw ('margin')
  9. dev_set_line_width (3)
  10. dev_display (Image)
  11. disp_continue_message (WindowID, 'black', 'true')

  12. *步骤2 提取轮廓
  13. edges_sub_pix (Image, Edges, 'lanser2', 0.5, 40, 90)
  14. dev_display (Edges)
  15. disp_continue_message (WindowID, 'black', 'true')

  16. * 步骤3 轮廓分割与排序处理
  17. *使用直线与圆方式分割轮廓。
  18. segment_contours_xld (Edges, ContoursSplit, 'lines_circles', 6, 4, 4)
  19. *将分割的结果轮廓进行排序,'upper_left'为排序类型,为左上角,'true', 'column'表示递增列优先排序。
  20. sort_contours_xld (ContoursSplit, SortedContours, 'upper_left', 'true', 'column')
  21. dev_clear_window ()
  22. dev_set_colored (12)
  23. dev_display (SortedContours)
  24. disp_continue_message (WindowID, 'black', 'true')

  25. * 步骤4 执行拟合
  26. ROI := [115,225,395,535]
  27. dev_open_window (0, round(Width / 2), (ROI[3] - ROI[1]) * 2, (ROI[2] - ROI[0]) * 2, 'black', WindowHandleZoom)
  28. dev_set_part (round(ROI[0]), round(ROI[1]), round(ROI[2]), round(ROI[3]))
  29. set_display_font (WindowHandleZoom, 14, 'mono', 'true', 'false')
  30. count_obj (SortedContours, NumSegments)
  31. dev_display (Image)
  32. NumCircles := 0
  33. NumLines := 0
  34. for i := 1 to NumSegments by 1
  35.     select_obj (SortedContours, SingleSegment, i)
  36.     *调用此函数判断当前选择的轮廓适合哪种拟合,-1适合直线,0适合椭圆,1适合圆。
  37.     get_contour_global_attrib_xld (SingleSegment, 'cont_approx', Attrib)
  38.     if (Attrib == 1)
  39.         NumCircles := NumCircles + 1
  40.         *进行圆的拟合所操作。SingleSegment为输入轮廓,'atukey'为拟合算法,参数三表示拟合 拟合采用最多的轮廓点数
  41.         *点数必须大于3,-1表示所有点都参与拟合。2表示被认为是封闭轮廓 的首尾点最大距离。
  42.         *小于此值表示封闭。其实在这里可以理解 为是拟合成圆还是圆弧。0表示轮廓开始结束的参与 拟合 点的个数。
  43.         *5表示 迭代次数,2表示离群 值的剪切因子,越小忽略的离群值越多。后面剩下的为输出参数。
  44.         fit_circle_contour_xld (SingleSegment, 'atukey', -1, 2, 0, 5, 2, Row, Column, Radius, StartPhi, EndPhi, PointOrder)
  45.         gen_ellipse_contour_xld (ContEllipse, Row, Column, 0, Radius, Radius, 0, rad(360), 'positive', 1.0)
  46.         dev_set_color ('white')
  47.         dev_display (ContEllipse)
  48.         set_tposition (WindowHandleZoom, Row - Radius - 10, Column)
  49.         write_string (WindowHandleZoom, 'C' + NumCircles)
  50.         ResultText := 'C' + NumCircles + ': radius = ' + Radius
  51.     else
  52.         NumLines := NumLines + 1
  53.         *进行直线的拟合。SingleSegment为输入轮廓,'tukey'为拟合算法名,参数三表示拟合 拟合采用最多的轮廓点数
  54.         *点数必须大于3,-1表示所有点都参与拟合。0表示轮廓开始结束的参与 拟合 点的个数。
  55.         *5表示 迭代次数,2表示离群 值的剪切因子,越小忽略的离群值越多。后面剩下的为输出参数。
  56.         fit_line_contour_xld (SingleSegment, 'tukey', -1, 0, 5, 2, RowBegin, ColBegin, RowEnd, ColEnd, Nr, Nc, Dist)
  57.         gen_contour_polygon_xld (Line, [RowBegin,RowEnd], [ColBegin,ColEnd])
  58.         dev_set_color ('yellow')
  59.         dev_display (Line)
  60.         distance_pp (RowBegin, ColBegin, RowEnd, ColEnd, Length)
  61.         set_tposition (WindowHandleZoom, (RowBegin + RowEnd) / 2 - Nr * 10, (ColBegin + ColEnd) / 2)
  62.         write_string (WindowHandleZoom, 'L' + NumLines)
  63.         ResultText := 'L' + NumLines + ': length = ' + Length
  64.     endif
  65.     set_tposition (WindowHandleZoom, 275 + i * 10, 230)
  66.     write_string (WindowHandleZoom, ResultText)
  67. endfor
  68. disp_continue_message (WindowID, 'black', 'true')
  69. stop ()
  70. dev_set_window (WindowHandleZoom)
  71. dev_close_window ()
  72. dev_clear_window ()
复制代码


回复

使用道具 举报

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