dev_close_window ()
dev_open_window (0, 0, 512, 512, 'black', WindowHandle)
*读取图像
read_image (Image, 'C:/Users/24771/Pictures/Saved Pictures/1.jpg')
*计算图像的通道数
count_channels (Image, Num)
disp_message (WindowHandle, '拆分后图像的通道数为'+Num, 'window', 12, 12, 'black', 'true')
*循环读取每个通道的图像
for Index := 1 to Num by 1
*获取多通道图像中指定通道的图像
access_channel (Image, channel, Index)
endfor
*分解通道
decompose3 (Image, Image1, Image2, Image3)
*RGB通道转HSV通道
trans_from_rgb (Image1, Image2, Image3, ImageResult1, ImageResult2, ImageResult3, 'hsv')
*合并通道
compose2 (Image3, Image2, MultiChannelImage)
compose3 (Image1, Image2,Image3, MultiChannelImage2)
*向图像附加通道
append_channel (MultiChannelImage, Image1, ImageExtended)
*******************************图像相关的算子介绍*************
dev_open_window (0, 0, 512, 512, 'black', WindowHandle1)
*创建灰度值为零的图像
gen_image_const (Image8, 'int8', 512, 512)
*计算图像尺寸
get_image_size (Image, Width, Height)
*指定图像像素为同一灰度值
gen_image_proto (Image, ImageCleared1, 0)
gen_image_proto (Image, ImageCleared3, 255)
*得到图像的定义域
get_domain (Image, Domain)
*裁剪图像得到新图像
crop_domain (Image, ImagePart)
*获取图像像素的灰度值
get_grayval (ImagePart, 100, 100, Grayval)
*设置图像像素点的灰度值
set_grayval (ImagePart, 100, 100, Grayval)
halcon初识Halcon四(halcon图像相关的算子)
最新推荐文章于 2024-06-19 08:53:14 发布