Halcon算子总结
Posted 棉晗榜
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Halcon算子总结相关的知识,希望对你有一定的参考价值。
目录
图片放大
* 图片放大两倍 ,长度*2,宽度*2
zoom_image_size(Image,ImageZoom,Width*2,Height*2,'constant')
* 图片放大两倍
zoom_image_factor (Image, ImageZoom, 2, 2, 'constant')
* 显示图片
dev_display (ImageZoom)
选择指定区域的图片
* 选择指定区域的图片
rectangle1_domain (ImageZoom, ImageReduced,6, 6, 59, 152)
选择指定阈值的区域
* 图片阈值处理,选择指定阈值的区域,红色的为选中
threshold (ImageReduced, RawSegmentation, 4, 200)
消除小区域,并平滑区域的边界
* 开口可以消除小区域(比圆形结构元件小)并平滑区域的边界。
opening_circle (RawSegmentation, circleRegion,1)
显示字体大小设置
* 显示字体大小
set_display_font (WindowID, 30, 'mono', 'true', 'false')
内部充满
* 内部充满
fill_up (circleRegion, RegionFillUp)
*根据形状特征填充孔洞
*fill_up_shape(circleRegion, RegionFillUp, 'area',40, 100)
连接选中区域为一大片
*以数字设置的角度画圆圈
closing_circle (RegionFillUp, conCircleRegion, 4)
去掉小的模块
*去掉小的模块
opening_rectangle1 (conCircleRegion, Cut,3,3)
分割粘连字符
partition_rectangle (Cut, ConnectedPatterns, 22, 100)
partition_dynamic(Cut,parRegion,22,20)
求交集
* 与threshold后的图,求交集
intersection (parRegion, RawSegmentation, NumberCandidates)
选择指定尺寸的区域
* 选择指定尺寸的块
select_shape (Cut2, Numbers, ['width','height'], 'and',[2, 1],[50,55])
以上是关于Halcon算子总结的主要内容,如果未能解决你的问题,请参考以下文章