其他分享
首页 > 其他分享> > halcon-auto_threshold自动全局阈值

halcon-auto_threshold自动全局阈值

作者:互联网

1.jpg

 

 

在HDevelop中

dev_update_off()

read_image (Image, 'D:/bb/tu/1.jpg')
rgb1_to_gray(Image,Image1)
*将RGB图像转换为灰度图像

get_image_size (Image1, Width, Height)
dev_open_window(10,10,Width, Height,'black',WindowHandle)

auto_threshold (Image1, Regions, 10)
*自动全局阈值--【根据灰度值分割成多个区域】
*参数2:输出区域
*参数3:高斯滤波的标准差--越大提取区域越少
*       【标准差在值内的归为同一个区域】

dev_display(Image1)

dev_open_window(10,100,Width, Height,'black',WindowHandle1)
dev_display(Regions)

 

 

 


在Qt Creator中

 

 

 

 

标签:10,auto,dev,halcon,Width,灰度,threshold,Image1,Height
来源: https://www.cnblogs.com/liming19680104/p/15962905.html