QQ登录

只需一步,快速开始

工业视觉生成二值化图像的两种方法

[ 复制链接 ]

工业视觉生成二值化图像的两种方法

工业视觉生成二值化图像的两种方法

*生成二值化图像的两种方法
*方法1,使用region_to_bin函数
read_image (Image, 'fabrik')
threshold (Image, Region, 170, 255)
get_image_size (Image, Width, Height)
region_to_bin (Region, BinImage, 255, 0, Width, Height)
*方法2使用paint_region
read_image (Image, 'fabrik')
gen_rectangle1 (Rectangle, 30, 20, 100, 200)
paint_region (Rectangle, Image, ImageResult, 255, 'fill')
complement (Rectangle, RegionComplement)
paint_region (RegionComplement, ImageResult, ImageResult1, 0, 'fill')


回复

使用道具 举报

快速回复 返回列表 客服中心 搜索