halcon 批量将RGB图像转灰度图像
Posted MindWorks.精驰软件
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了halcon 批量将RGB图像转灰度图像相关的知识,希望对你有一定的参考价值。
dev_close_window ()
ImageDir := 'E:/客户与项目/精驰技术/hphsinpstect/HPHS.INSPECT/bin/x64/Debug/DeepLearning/ROI-CCD3图像运算/contamination'
list_image_files (ImageDir, [], ['recursive','follow_links'], ImageFilesTmp)
for ImageDirIndex := 0 to |ImageFilesTmp| - 1 by 1
read_image (Image, ImageFilesTmp[ImageDirIndex])
get_image_size (Image, Width, Height)
dev_open_window (0, 0, Width, Height, 'black', WindowHandle)
rgb1_to_gray(Image,GrayImage)
write_image(GrayImage,'jpeg',0,ImageFilesTmp[ImageDirIndex])
dev_display (GrayImage)
endfor
以上是关于halcon 批量将RGB图像转灰度图像的主要内容,如果未能解决你的问题,请参考以下文章