* 获得二值图 Image_binread_image(Image, 'C:/Alex/halcon/test.bmp') // 读图 threshold (Image, Regions, , ) // 二值化,直方图操作 get_image_size(Image, width, height) // 获得图像大小 region_to_bin(Regions, Image_bin, , , width, height) // 把region转成image,region不能直接保存成图像 * 保存…