halcon图像灰度操作
*生成灰度为0的图像
gen_image_const (Image, ‘byte’, 512, 512)
*计算尺寸
get_image_size (Image, Width, Height)
*设置图像为同一灰度值
gen_image_proto (Image, ImageCleared, 160)
*得到图像定义域
get_domain (ImageCleared, Domain)
*裁剪图像得到新的图像
crop_domain (ImageCleared, ImagePart)
*得到某像素点的像素
get_grayval (ImagePart, 23,23, Grayval)
*设置像素点的灰度值
set_grayval (ImagePart, 23, 23, 255)
赞 (0)