1.前言
? ? ? ? Halcon可识别字符,因此可识别车牌。
2.代码
*读取图片
read_image (Image, 'C:/Users/Administrator/Desktop/图片/车牌.jpg')
*画矩形
draw_rectangle1 (3600, Row1, Column1, Row2, Column2)
*生成矩形
gen_rectangle1 (Rectangle, Row1, Column1, Row2, Column2)
*裁剪矩形区域
reduce_domain (Image, Rectangle, ImageReduced)
*灰度化
rgb1_to_gray (ImageReduced, GrayImage)
*阈值化
threshold (GrayImage, Regions, 67, 144)
*膨胀
dilation_rectangle1 (Regions, RegionDilation, 2, 2)
*连通域
connection (RegionDilation, ConnectedRegions)
*排序
sort_region (ConnectedRegions, SortedRegions, 'first_point', 'true', 'row')
*读取OCR分类器
read_ocr_class_mlp ('Industrial_0-9A-Z_NoRej.omc', OCRHandle)
*使用OCR分类器识别
do_ocr_multi_class_mlp (SortedRegions, GrayImage, OCRHandle, Class, Confidence)
*显示结果
disp_message (3600, Class, 'window', 20, 20, 'black', 'true')
3.效果
?4.结语
? ? ? ? Halcon,字符识别功能,使之应用场景更广泛。
|