halcon数据类型
object 图形数据类型
图像image、区域region 、轮廓xld
control 控制数据类型
Htupe int double string
图像坐标系
#halcon代码
read_image (Image, 'printer_chip/printer_chip_01')
read_image (Image1, 'patras')
*通道RGB
count_channels (Image, Channels) //查询通道数
count_channels (Image1, Channels1)
decompose3 (Image1, Image11, Image2, Image3)//将三通到图像转化为三张图像
*图像大小
get_image_size (Image, Width, Height)
*图像类型
get_image_type (Image1, Type)
*byte:0-255
*行列位置的灰度值
get_grayval (Image1, 10, 10, Grayval)
*更改(设置)行列位置的灰度值
set_grayval (Image1, 10, 10, Grayval)
*区域 region of interest
gen_rectangle1 (ROI_0, 268.979, 418.359, 459.55, 878.904)