算子:set_display_font( : :WindowHandle,Size,Font,Bold,Slant: ) 示例:set_display_font (200000, 24, 'mono', 'true', 'false') 200000(输入参数1):输入窗口句柄 24(输入参数2):输入字体大小 'mono'(输入参数3):输入字体类型 'true'(输入参数4):是否选择粗体 'false'(输入参数5):是否选择斜体 ...
显示图像 dev_display() 在当前窗口显示文字 dev_disp_text() 在指定窗口显示文字 disp_message() 设置显示字体类型 set_display_font() 设置显示颜色 dev_set_color() 设置轮廓线的线宽 dev_set_line_width() 定义区域填充模式 dev_set_draw() 二. Image相关 加载图像 read_image() 保存图像 write_image(...
1.1 Halcon12和Halcon20不同版本的帮助有所不同 在Halcon12中,有set_font和set_display_font两个算子,其中set_display_font是本地函数形式,所以最终的实现算子为set_font. 按照不同的系统环境下,使用方法略有不同: WinSystem.PNG LinuxSystem.PNG OSsystem.PNG 不同的系统下使用的方法不同,原本以为比较简单,直...
在Halcon12中,有set_font和set_display_font两个算子,其中set_display_font是本地函数形式,所以最终的实现算子为set_font.按照不同的系统环境下,使用方法略有不同:不同的系统下使用的方法不同,原本以为比较简单,直接按照文档的example来设定就行,但是win下的字体比较多,这种方法可行,其他的系统...
set_display_font(WindowHandle,10,'mono','true','false') *关键函数false:无需白板做背景显示 disp_message(WindowHandle,'图控大叔','window',10,50,'red','false') *位置定位 set_tposition(WindowHandle,240,12) *在光标位置显示文字 write_string(WindowHandle,'真帅') ...
dev_set_line_width (2) *设置显示字体 set_display_font (WindowHandle, 14, 'mono', 'true', 'false') *继续显示消息 disp_continue_message (WindowHandle, 'black', 'true') stop () * --- start of the application --- * step 1: select the model object Row1 :...
HOperatorSet.GetInt(typeArray, 0, out int deviceType); if (deviceType == 0) // 0表示相机设备,可以根据需要检查其他设备类型 { Console.WriteLine($"Camera found: {deviceInfo}"); } } 图像获取: 一旦确定了要使用的相机,就可以使用Halcon来获取图像。
set_display_font (WindowHandle, 14, 'mono', 'true', 'false') dev_display (Image)* * 定义矩形roi,在其中检测边缘并创建度量*Row := 67Column := 133Phi := rad(0)Length1 := 90Length2 := 10Interpolation := 'nearest_neighbor'
(0,0,Width,Height,'black',WindowHandle)*绘制轮廓不填充dev_set_draw('margin')*线宽dev_set_line_width(1)*字体set_display_font(WindowHandle,16,'mono','true','false')*使用图像增强算子emphasize(Image,ImageEmphasize,5,5,2)*显示图像dev_display(ImageEmphasize)*显示文本dev_disp_text('NG','...
dev_set_line_width (3) OpSystem := environment('OS') set_display_font (WindowHandle, 14, 'mono', 'true', 'false') *标定相机 StartCamPar := [0.0,0.0,0.0000299,0.0000299,4896/2,3264/2,4896,3264] create_calib_data ('calibration_object', 1, 1, CalibDataID) ...