Halcon基本算子操作

*读取图片
read_image (Image, 'printer_chip/printer_chip_01')
*获取图片大小
get_image_size (Image, Width, Height)
* 关闭窗口
dev_close_window()
* 打开窗口
dev_open_window(0, 0, Width, Height, 'black', WindowHandle)
* 显示图片
dev_display(Image)
* 设定的阈值分割图片
threshold(Image,Region,128,255)
* 进行多区域连接
connection(Region,ConnectedRegions)
* 根据各个区域面积集合多颜色区分
select_shape(ConnectedRegions,SelectedRegions,'area', 'and', 150, 99999)
* 根据中心区域选择
area_center(Region, Area, Row, Column)
* 画十字准心
gen_cross_contour_xld(Cross, Row, Column, 6, 0.785398)
View Code

 

posted @ 2023-07-22 19:31  逆风起降  阅读(7)  评论(0编辑  收藏  举报