dev_set_color用于指定在图形窗口中显示区域的颜色、包括XLD和其他几何对象。 ColorName可以指定为十六进制 RGB三元组 或 RGBA四元组 以及者 颜色名字。 比如: dev_set_color ('#00ff0040') dev_set_color ('red') 举个例子 read_image (Image,'2') dev_set_color ('#00ff0040') gen_rectangle1 (Re...
dev_set_color( : : ColorName : ) 描述 dev_set_color定义用于在图形窗口中显示region,XLD和其他geometrical对象的颜色。 可用的颜色可以通过算子query_color查询。 另外,ColorName可以被指定为'#rrggbb'形式的RGB三元组,其中'rr','gg'和'bb'分别是'00'和'ff'之间的十六进制数字。 有关更多信息,请参阅算子...
dev_set_color— Set one or more output colors.Signaturedev_set_color( : : ColorName : ) Descriptiondev_set_color defines the color(s) that are used to display regions, XLDs, and other geometrical objects in the graphics windows. The available colors can be queried with the operator query...
1. 图片(Image)、区域(Region)、轮廓(xld)显示 Halcon中可视化内容一般使用dev开头的算子包括: (1)dev_set_color():设置颜色; (2)dev_set_draw():设置区域显示方式,margin是轮廓显示,fill是填充显示; (3)dev_clear_window():没有参数,用于清理当前窗口内容; (4)dev_display():最重要的算子,可以显示图片...
dev_set_color ('black') *窗口中画出reigon区域 draw_region (Region, WindowHandle) *定义仿射变换矩阵 hom_mat2d_identity (HomMat2DIdentity) *在齐次仿射变换矩阵中增加旋转变换 hom_mat2d_rotate (HomMat2DIdentity, rad(phi), 256, 256, HomMat2DRotate) ...
Color := ['Green','Blue','Yellow','LightBlue','BackColor'] HightColor :=['green','blue','yellow','slate blue'] dev_set_color ('white') *创建存储样本对象变量 dev_set_draw ('margin') gen_empty_obj(Class) *生成训练样本 for I := 1 to |Color| by 1 ...
dev_clear_window () dev_display (ImageResult1) dev_set_color ('red') dev_display (Contour) dev_set_color ('blue') dev_display (Contours) disp_message (200000, '圆心('+Parameter[0]+','+Parameter[1]+'),半径:'+Parameter[2], 'image', 10, 10, 'green', 'false')...
dev_set_lut (’temperature’) dev_display (Image) 接着,使用一个叫做3D图形的显示图像的一部分。这里,灰度值被作为高度信息。对于这种模式,LUT被使用。 gen_rectangle1(Rectangle, 358, 298, 387, 329) dev_set_draw('margin') dev_set_color('yellow') ...
ColorSet[21]:='forest green'for Index := 1 to 21 by 1 dev_update_window ('off')dev_close_window ()dev_open_window (0, 0, 512, 512, ColorSet[Index], WindowHandle)set_display_font (WindowHandle, 20, 'mono', 'true', 'false')disp_message (WindowHandle, '当前颜色是:'+ColorSet...
*打开一个新的窗口 dev_open_window (0, 0, 512, 512, 'black', WindowHandle) *设置当前颜色 dev_set_color ('red') *设置填充模式 dev_set_draw ('margin') *设置现款(用于画图的时候操作) dev_set_line_width (5) *定义区域输出形状 dev_set_shape ('rectangle2') *定义灰度图像成彩色图像的...