Halcon 路标牌识别

文章目录

  • gray_closing_shape 使用选定的掩码执行灰度值关闭
  • create_planar_uncalib_deformable_model 为未校准的透视匹配创建一个可变形的模型
  • get_deformable_model_params 返回可变形模型的参数
  • find_planar_uncalib_deformable_model 在图像中寻找平面投影不变变形模型的最佳匹配
  • get_deformable_model_contours 返回可变形模型的轮廓表示形式。
  • projective_trans_contour_xld 对XLD轮廓应用投影变换
  • clear_deformable_model 清除模板
  • get_region_runs 访问区域的运行长度编码
  • 示例

gray_closing_shape 使用选定的掩码执行灰度值关闭

gray_closing_shape(Image : ImageClosing : MaskHeight, MaskWidth, MaskShape : )
    Image (input_object): 需要计算最小灰度值的图像。
    ImageClosing (output_object): 包含最小灰度值的图像。
    MaskHeight (input_control): 滤波器掩模的高度。
        默认值: 11
        建议值: 3, 5, 7, 9, 11, 13, 15
        典型取值范围: 1.0 ≤ MaskHeight ≤ 511.0
    MaskWidth (input_control): 滤波器掩模的宽度。
        默认值: 11
        建议值: 3, 5, 7, 9, 11, 13, 15
        典型取值范围: 1.0 ≤ MaskWidth ≤ 511.0
    MaskShape (input_control): 控制滤波器掩模形状的参数。
        默认值: 'octagon'
        可选值: 'octagon', 'rectangle', 'rhombus'

create_planar_uncalib_deformable_model 为未校准的透视匹配创建一个可变形的模型

create_planar_uncalib_deformable_model(Template : : NumLevels, AngleStart, AngleExtent, AngleStep, ScaleRMin, ScaleRMax, ScaleRStep, ScaleCMin, ScaleCMax, ScaleCStep, Optimization, Metric, Contrast, MinContrast, GenParamName, GenParamValue : ModelID)
Image (input_object): 输入图像,模型应在其中查找目标。
ModelID (input_control): 模型的标识符。
AngleStart (input_control): 模型的最小旋转角度。
AngleExtent (input_control): 旋转角度的范围。
ScaleRMin/ScaleRMax/ScaleCMin/ScaleCMax (input_control): 模型在行和列方向上的最小和最大比例。
MinScore (input_control): 实例的最低得分阈值。
NumMatches (input_control): 要找到的模型实例数量。
MaxOverlap (input_control): 实例之间的最大重叠度量。
NumLevels (input_control): 在匹配中使用的金字塔级别数。
Greediness (input_control): 搜索启发式算法的“贪婪度”。
    GenParamName/GenParamValue (input_control): 一般参数名称和值。
HomMat2D (output_control): 模型实例与找到的实例之间的变换矩阵。
Score (output_control): 找到的模型实例的得分。

get_deformable_model_params 返回可变形模型的参数

get_deformable_model_params( : : ModelID, GenParamName : GenParamValue)
这段参数描述了一个可变形模型(deformable model)的相关控制参数:

    ModelID (input_control): 模型的标识符。
    GenParamName (input_control): 要查询可变形模型的通用参数的名称列表。
        默认值: 'angle_start'
        可选值: 'angle_extent', 'angle_start', 'angle_step', 'cam_param', 'cam_param_rect', 'created_from_xld', 'get_deformable_model_contours_coord_system', 'metric', 'min_contrast', 'min_size', 'model_col', 'model_pose', 'model_row', 'model_type', 'num_levels', 'optimization', 'reference_pose', 'scale_c_max', 'scale_c_min', 'scale_c_step', 'scale_r_max', 'scale_r_min', 'scale_r_step'
    GenParamValue (output_control): 通用参数的值。

find_planar_uncalib_deformable_model 在图像中寻找平面投影不变变形模型的最佳匹配

find_planar_uncalib_deformable_model(Image : : ModelID, AngleStart, AngleExtent, ScaleRMin, ScaleRMax, ScaleCMin, ScaleCMax, MinScore, NumMatches, MaxOverlap, NumLevels, Greediness, GenParamName, GenParamValue : HomMat2D, Score)
    Image:输入图像,模型应该在其中被找到。
    ModelID:模型的标识符。
    AngleStart:模型的最小旋转角度。
    AngleExtent:旋转角度的范围。
    ScaleRMin:模型在行方向上的最小比例。
    ScaleRMax:模型在行方向上的最大比例。
    ScaleCMin:模型在列方向上的最小比例。
    ScaleCMax:模型在列方向上的最大比例。
    MinScore:要找到的模型实例的最小分数。
    NumMatches:要找到的模型实例的数量(或者为所有匹配项设置为0)。
    MaxOverlap:要找到的模型实例的最大重叠。
    NumLevels:在匹配中使用的金字塔级别数。
    Greediness:搜索启发式算法的“贪婪度”。
    GenParamName:通用参数名称。
    GenParamValue:通用参数值。
    HomMat2D:模型和找到的实例之间的Homographies。
    Score:找到的模型实例的分数。

get_deformable_model_contours 返回可变形模型的轮廓表示形式。

get_deformable_model_contours( : ModelContours : ModelID, Level : )
ModelContours:可变形模型的轮廓表示。
ModelID:模型的标识符。
Level:应返回轮廓表示的金字塔级别。默认为1,建议值为110之间的整数,且必须大于等于1

projective_trans_contour_xld 对XLD轮廓应用投影变换

projective_trans_contour_xld(Contours : ContoursProjTrans : HomMat2D : )
Contours:输入的轮廓。
ContoursProjTrans:输出的轮廓。
HomMat2D:齐次投影变换矩阵。

clear_deformable_model 清除模板

clear_deformable_model( : : ModelID : )
ModelID :模板句柄

get_region_runs 访问区域的运行长度编码

get_region_runs(Region : : : Row, ColumnBegin, ColumnEnd)
Region:输入的区域。
Row:弦线的行号。
ColumnBegin:弦线起点的列号。
ColumnEnd:弦线终点的列号

示例

determine_area_of_interest (Image, Rectangle, AreaOfInterest) 函数

* 裁剪不重要的部分
reduce_domain (Image, Rectangle, ImageReduced)
*分成RGB三个图片
decompose3 (ImageReduced, ImageR, ImageG, ImageB)
*将图片转换为HSV
trans_from_rgb (ImageR, ImageG, ImageB, ImageH, ImageS, ImageV, 'hsv')
* 阈值处理
threshold (ImageS, HighSat, 130, 255)
* 膨胀
dilation_circle (HighSat, HighSatD, 2.0)
* 将图片填充
fill_up (HighSatD, HighSatD)
*填充后的图片裁剪
reduce_domain (ImageH, HighSatD, HighHue)
* 阈值处理
threshold (HighHue, ColoredAreaOfInterest, [230,145], [255,162])
* 填充图片
fill_up (ColoredAreaOfInterest, ImageFilled)
* 膨胀
dilation_circle (ImageFilled, ImageDilated, 3.0)
* 将图片联合
union1 (ImageDilated, AreaOfInterest)
return ()
* This example shows an application case from the automobile
* industry. A monitoring system in a car  checks the sidewalk
* for roadsigns to support the driver in case of any inattention.
* To show the imaging process we focus on two road signs,
* the attention and the dead end road sign. First the models
* of both signs are generated and then detected in a street
* sequence.
* 
* 读取图片
dev_close_window ()
* Read in model images.
* While the attention sign is from a synthetic source,
* the model for the dead end sign is from another sequence.
* 读取路标图片
read_image (ImageAttentionSign, 'road_signs/attention_road_sign')
* 读取街道图片
read_image (ImageInit, 'road_signs/street_01')
dev_open_window_fit_image (ImageInit, 0, 0, -1, -1, WindowHandle)
dev_update_off ()
dev_set_line_width (2)
dev_set_color ('green')
dev_set_draw ('margin')
set_display_font (WindowHandle, 14, 'mono', 'true', 'false')
* 
* Some values for the later matching process are initialized
* The Attention sign has a significant red part, the
* dead end sign a blue one. Hence, we can extract the respective
* channels from the color images.
Channel := [3,1]
* In this example, we have significant scalings of the road signs.
ScaleRMin := [0.5,0.4]
ScaleRMax := [0.8,2.0]
* One could add an anisotropic scaling for the exhaustive search.
* However, this makes the detection slower and is not required here.
ScaleCMin := [1.0,1.0]
ScaleCMax := [1.0,1.0]
* Add names to the signs.
RoadSign := ['Attention','Dead end']
HFac := [47.0,50.0]
* 
* Prepare the attention sign picture for the model
* creation process.
* 创建通道
access_channel (ImageAttentionSign, Image, Channel[0])
* 放大图片
zoom_image_factor (Image, ImageZoomed, 0.1, 0.1, 'weighted')
* 将放大后的图片插入到轮廓识别算法中
inspect_shape_model (ImageZoomed, ModelImages, ModelRegions, 3, 20)
* 创建一个可变形的模板
create_planar_uncalib_deformable_model (ImageZoomed, 3, [], [], 0.1, ScaleRMin[0], [], 0.05, ScaleCMin[0], [], 0.5, 'none', 'use_polarity', 'auto', 'auto', [], [], ModelID)
Models := ModelID
* 
* 
* 
*读取路标图片
read_image (ImageDeadEnd, 'road_signs/dead_end_road_sign')
* 获取通道1
access_channel (ImageDeadEnd, Image, Channel[1])
* 使用选定的掩码执行灰度值关闭
gray_closing_shape (Image, ImageClosing, 5, 5, 'octagon')
* 图片放大
zoom_image_factor (ImageClosing, ImageZoomed, 0.4, 0.4, 'weighted')
gen_rectangle1 (Rectangle1, 28, 71, 69, 97)
* 裁剪
reduce_domain (ImageZoomed, Rectangle1, ImageReduced)
* 将裁剪的标识创建一个可变形的模板
create_planar_uncalib_deformable_model (ImageReduced, 3, [], [], 0.1, ScaleRMin[1], [], 0.05, ScaleRMin[1], [], 0.1, 'none', 'use_polarity', 'auto', 'auto', [], [], ModelID)
* 
* The following three lines theoretically show how to
* query specific parameters of a model.
* Practically, the derived information is not needed
* within the program.
* 获取模板参数
get_deformable_model_params (ModelID, 'angle_step', AngleStep)
get_deformable_model_params (ModelID, 'scale_r_step', ScaleRStep)
Models := [Models,ModelID]
* 
* Generate ROI in which the road signs are expected.
* We can discard not significant parts of the image, in which
* no road sign can be located.
*丢弃图像中不重要的部分
gen_rectangle1 (Rectangle, 115, 0, 360, 640)
* 
* Search in image sequence
for Index := 1 to 16 by 1
    OutputString := []
    TotalTime := 0
    * 读取街道图片
    read_image (Image, 'road_signs/street_' + Index$'.02')
    * We are using color images, hence the ROI of the search image
    * can significantly be reduced based on the color.
    determine_area_of_interest (Image, Rectangle, AreaOfInterest)
    reduce_domain (Image, AreaOfInterest, ImageReduced)
    dev_display (Image)
    * 
    for Index2 := 0 to |Models| - 1 by 1
        * 
        * Depending on the street sign to be found, we use different color
        * channels of the image and the operator find_planar_uncalib_deformable_model
        * with different parameters because of the varying dimensions of the models.
        access_channel (ImageReduced, ImageChannel, Channel[Index2])
        count_seconds (Time1)
        * 查找匹配模板
        find_planar_uncalib_deformable_model (ImageChannel, Models[Index2], 0, 0, ScaleRMin[Index2], ScaleRMax[Index2], ScaleCMin[Index2], ScaleCMax[Index2], 0.85, 1, 0, 2, 0.4, [], [], HomMat2D, Score)
        count_seconds (Time2)
        Time := Time2 - Time1
        TotalTime := TotalTime + Time
        * 
        * Display found models.
        if (|HomMat2D|)
            *发现轮廓
            get_deformable_model_contours (ModelContours, Models[Index2], 1)
            *将轮廓进行投影
            projective_trans_contour_xld (ModelContours, ContoursProjTrans, HomMat2D)
            * 产生亚像素轮廓
            gen_region_contour_xld (ContoursProjTrans, Region, 'filled')
            * 合并
            union1 (Region, RegionU)
            *获取中心点面积
            area_center (RegionU, Area, R, C)
            * 访问区域的长度
            get_region_runs (RegionU, Row, ColumnBegin, ColumnEnd)
            H := max(Row) - min(Row)
            Fac := H / HFac[Index2]
            gen_circle (Circle, R, C, 45 * Fac)
            dev_display (Circle)
            gen_circle (Circle, R, C, 50 * Fac)
            dev_display (Circle)
            dev_display (ContoursProjTrans)
            if (Index2 == 0)
                OutputString := 'Attention sign found in : ' + (Time * 1000)$'.2f' + ' ms \n'
            else
                OutputString := 'Dead end sign found in  : ' + (Time * 1000)$'.2f' + ' ms \n'
            endif
        endif
    endfor
    if (|OutputString| == 0)
        OutputString := 'No sign found in        : ' + (Time * 1000)$'.2f' + ' ms \n'
    endif
    OutputString := ['Search for all models in: ' + (TotalTime * 1000)$'.2f' + ' ms',OutputString]
    disp_message (WindowHandle, OutputString, 'window', 10, 10, 'black', 'true')
    disp_continue_message (WindowHandle, 'black', 'true')
    stop ()
endfor
dev_display (Image)
disp_message (WindowHandle, 'Program finished.\nPress \'Run\' to clear all deformable models.', 'window', 10, 10, 'black', 'true')
stop ()
* Clean the memory of the models.
for Index1 := 0 to 1 by 1
    clear_deformable_model (Models[Index1])
endfor

在这里插入图片描述

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:/a/476377.html

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

详细剖析多线程(更新中...)

文章目录 前言一、认识线程1.1线程概念1.2为什么要有线程1.3线程和进程的区别(经典面试题) 二、创建线程2.1继承 Thread 类,重写run2.2实现 Runnable 接口,重写run2.3继承 Thread 类,重写run,匿名内部类2.4实现 Runnable 接口,重写run&#x…

电脑维修的相关资料,有需要的自取

电脑维修的相关资料,有需要的自取。 链接:https://pan.baidu.com/s/1X81sBNAOmomFvug6mK56Bw 提取码:52pj 爆笑幽默段子:电脑出故障了,准备拿去修,结果被女朋 友拦住了。女朋友:“你们男人一定…

登录与注册功能(简单版)(3)登录时使用Cookie增加记住我功能

目录 1、实现分析 2、步骤 1)新建login.jsp 2)修改LoginServlet: 3)启动访问: 3、安全性考虑 4、最佳实践思路 1)选择安全的认证机制 2)强化会话管理 3)安全地存储用户凭证…

数字化战略失配企业现状,可惜了!

尽管大部分的企业领导者已经意识到数字化转型对于企业革新业务模式、提升运营效率、抢占市场先机的关键作用,但是,认知上的转变并不等同于成功的实践。在实际操作中,往往出现战略与企业现状不符的现象,这无疑会使得所有的努力付诸…

矩形总面积(第十四届蓝桥杯JavaB组省赛真题)

测试用例范围比较大,所以全部用long类型,如果用int类型只能通过60%,建议在内存和运行时间允许的情况下,比赛题都用long。 重点在于计算相交的面积,这里找的两个相交点是左上角(m1,n1)和右下角&a…

公司系统中了.rmallox勒索病毒如何恢复数据?

早晨上班时刻: 当阳光逐渐洒满大地,城市的喧嚣开始涌动,某公司的员工们纷纷踏入办公大楼,准备开始新的一天的工作。他们像往常一样打开电脑,准备接收邮件、查看日程、浏览项目进展。 病毒悄然发作: 就在员…

万亿参数GPU!算力提升30倍!英伟达新核弹B200重磅发布!

关注文章底部的公众号,获取每日AI资讯 前沿 3月18日-21日期间,英伟达在美国圣何塞召开GTC大会。创始人黄仁勋也在GTC大会上,做了一场长达两小时的开幕演讲,展示了其在AI芯片、机器人、汽车等领域的最新研发成果和技术进展,号称让全世界用上AI。 全球头号人工智能领域开发…

加解密、签名、验签、数字签名、数字证书

说明:本文属于学习笔记,借鉴了很多经典网文,已记不清出处,如有侵权,请告知。 前言: 嵌入式开发时,绕不开数据安全问题。最近又在做OTA升级相关工作,因此,借此机会学习了加…

MySQL 索引:索引为什么使用 B+树?

Hash 索引不支持顺序和范围查询; 二叉查找树(BST):解决了排序的问题,极端情况下可能会退化成线性链表,查询效率急剧下降; 平衡二叉树(AVL) :通过旋转解决了平衡的问题,但是旋转操作效率太低&am…

从点云创建 DSM:网格化和可视化实用指南

今天我将向您展示如何从点云创建数字表面模型(DSM)。首先,我们将尝试了解 DSM 是什么,然后我们将进入讨论的更实际部分。 什么是 DSM? DSM 是一个描述表面及其表面所有内容的模型。现在,为了更清楚地了解…

分布式异步任务框架celery

Celery介绍 github地址:GitHub - celery/celery: Distributed Task Queue (development branch) 文档地址:Celery - Distributed Task Queue — Celery 5.3.6 documentation 1.1 Celery是什么 celery时一个灵活且可靠的处理大量消息的分布式系统&…

hcip复习总结1

OSI----------- 定义了数据的产生标准 。 7 层 应用 ------- 表示 会话 传输 -----Telnet - 23 ssh---22 http---80 https-443 TCP ---- 传输控制卋议。是一种面向连接的可靠的传输卋议。 UDP---- 用户数据报卋议。是一种非面向连接的丌可靠传输卋议。 保证可靠性&…

鸿蒙开发-UI-动画-页面间动画

鸿蒙开发-UI-组件导航-Navigation 鸿蒙开发-UI-组件导航-Tabs 鸿蒙开发-UI-图形-图片 鸿蒙开发-UI-图形-绘制几何图形 鸿蒙开发-UI-图形-绘制自定义图形 鸿蒙开发-UI-图形-页面内动画 鸿蒙开发-UI-图形-组件内转场动画 鸿蒙开发-UI-图形-弹簧曲线动画 文章目录 前言 一、放大缩…

Springboot+vue的医疗挂号管理系统+数据库+报告+免费远程调试

效果介绍: Springbootvue的医疗挂号管理系统,Javaee项目,springboot vue前后端分离项目 本文设计了一个基于Springbootvue的前后端分离的医疗挂号管理系统,采用M(model)V(view)C(con…

Kubernetes集群搭建 kubernetes集群安装

Kubeadm kubeadm 是 Kubernetes 社区提供的集群构建工具,它能够以最佳实践的方式部署一个最小化的可用 Kubernetes 集群。 但是 kubeadm 在设计上并未安装网络解决方案,所以需要用户自行安装第三方符合 CNI 的网络解决方案,如 flanal&#…

7个方便快速使用的Tkinter控件源码分享,赶快收藏

文章目录 7个快速使用的Tkinter控件源码分享1. 按钮 Button2. 开关 Checkbutton3. 显示文本 Label4. 带名称、数值显示的划动条5. 带标签的复选框6. 带名称的输入框7. 带名称的微调框7个快速使用的Tkinter控件源码分享 tkinter 是一个简单入手,但是功能十分强大的GUI编程库,学…

阶乘的强悍溢出技能

【题目描述】 输入n,计算S=1!+2!+3!+…+n!的末6位(不含前导0)。,n!表示 前n个正整数之积。 【样例输入】 …

[python]bar_chart_race设置日期格式

1、设置日期标签的时间格式 # 设置日期格式,默认为%Y-%m-%dbcr.bar_chart_race(df, covid19_horiz.gif, period_fmt%b %-d, %Y) 2、更改日期标签为数值 # 设置日期标签为数值bcr.bar_chart_race(df.reset_index(dropTrue), covid19_horiz.gif, interpolate_period…

基于springboot+vue的中山社区医疗综合服务平台

博主主页:猫头鹰源码 博主简介:Java领域优质创作者、CSDN博客专家、阿里云专家博主、公司架构师、全网粉丝5万、专注Java技术领域和毕业设计项目实战,欢迎高校老师\讲师\同行交流合作 ​主要内容:毕业设计(Javaweb项目|小程序|Pyt…

第二十八天-ES6标准入门和Flex布局

目录 1.ES6标准入门 2.ES6与JavaScript关系 3.ES6常用新特性 1.变量与常量 1.let三大特性 2.常量三大特征 2.解构赋值 1.数组解构赋值 2.对象解构赋值 3.字符串解构赋值 3.函数与箭头函数 1.函数 2.箭头函数 4.JS的面向对象编程 5.模块化 export使用 import使用…