QQ登录

只需一步,快速开始

halcon gen_region_points函数介绍

[ 复制链接 ]
gen_region_points( : Region : Rows, Columns : )
gen_region_points创建一个由多个像素描述的区域。
像素不必以固定的顺序存储,
但是当像素按升序存储时,可以获得最佳运行时效果。
顺序如下:
2019-05-11_120826.jpg
所示坐标表示元组中的两个连续像素。


例程:
dev_close_window ()
dev_open_window (0, 0, 512, 512, 'black', WindowID)
Button := 1
Rows := []
Cols := []
dev_set_color ('red')
dev_clear_window ()
while (Button == 1)
  * Click with the mouse to specify points of the region
  * To quit loop use right mouse button
  get_mbutton (WindowID, Row, Column, Button)
  Rows := [Rows,Row]
  Cols := [Cols,Column]
  disp_circle (WindowID, Row, Column, 3)
endwhile
dev_set_color ('green')
gen_region_points (Region, Rows, Cols)
dev_display (Region)

  

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

  

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



回复

使用道具 举报

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