HALCON示例程序measure_chip.hdev芯片封装检测

HALCON示例程序measure_chip.hdev芯片封装检测

示例程序源码(加注释)

  • 关于显示类函数解释
    dev_update_off ()
    read_image (Image, ‘die_on_chip’)
    get_image_size (Image, Width, Height)
    dev_close_window ()
    dev_open_window (0, 0, Width * 2, Height * 2, ‘light gray’, WindowID)
    dev_set_part (0, 0, Height - 1, Width - 1)
    dev_set_line_width (3)
    dev_set_color (‘white’)
    dev_set_draw (‘margin’)
    dev_display (Image)
    set_display_font (WindowID, 16, ‘mono’, ‘true’, ‘false’)
    dev_set_line_width (2)
    dev_set_draw (‘fill’)
  • 快速二值化
    fast_threshold (Image, Region, 120, 255, 20)
  • 开运算
    opening_rectangle1 (Region, RegionOpening, 4, 4)
  • 分割连通域
    connection (RegionOpening, ConnectedRegions)
  • 填充孔洞
    fill_up (ConnectedRegions, RegionFillUp)
  • 通过矩形度与面积筛选区域
    select_shape (RegionFillUp, SelectedRegions, [‘rectangularity’,‘area’], ‘and’, [0.8,700], [1,99999])
  • 求取可旋转最小外接矩形
    smallest_rectangle2 (SelectedRegions, Row, Column, Phi, Length1, Length2)
    gen_rectangle2 (Rectangle, Row, Column, Phi, Length1, Length2)
  • 求边界,膨胀,减小定义域。以达到提取定义域效果。
    boundary (Rectangle, RegionBorder, ‘inner_filled’)
    dilation_rectangle1 (RegionBorder, RegionDilation, 4, 4)
    reduce_domain (Image, RegionDilation, ImageReduced)
    dev_clear_window ()
    dev_display (ImageReduced)
    disp_continue_message (WindowID, ‘black’, ‘true’)
    stop ()
  • 使用canny算子提取边缘
    edges_sub_pix (ImageReduced, Edges, ‘canny’, 1.5, 30, 40)
  • 分割XLD轮廓,算子解释传送门
    segment_contours_xld (Edges, ContoursSplit, ‘lines’, 5, 2, 2)
  • 通过长度筛选边缘
    select_contours_xld (ContoursSplit, SelectedContours1, ‘contour_length’, 10, 99999, -0.5, 0.5)
  • 合并临近的XLD轮廓
    union_adjacent_contours_xld (SelectedContours1, UnionContours1, 30, 1, ‘attr_keep’)
  • 拟合最小外接矩形
    fit_rectangle2_contour_xld (UnionContours1, ‘tukey’, -1, 0, 0, 3, 2, Row1, Column1, Phi1, Length11, Length12, PointOrder1)
  • 绘制XLD最小外接矩形
    gen_rectangle2_contour_xld (Rectangle1, Row1, Column1, Phi1, Length11, Length12)
  • 下边一段代码与上边一样哈
    fast_threshold (Image, Region1, 65, 255, 20)
    connection (Region1, ConnectedRegions1)
    opening_rectangle1 (ConnectedRegions1, RegionOpening1, 10, 10)
    fill_up (RegionOpening1, RegionFillUp1)
    select_shape (RegionFillUp1, SelectedRegions1, ‘area’, ‘and’, 1000, 99999)
    boundary (SelectedRegions1, RegionBorder1, ‘inner’)
    dilation_rectangle1 (RegionBorder1, RegionDilation1, 10, 10)
    reduce_domain (Image, RegionDilation1, ImageReduced1)
    dev_clear_window ()
    dev_display (ImageReduced1)
    disp_continue_message (WindowID, ‘black’, ‘true’)
    stop ()
    threshold_sub_pix (ImageReduced1, Border1, 70)
    segment_contours_xld (Border1, ContoursSplit2, ‘lines’, 5, 2, 2)
    select_contours_xld (ContoursSplit2, SelectedContours2, ‘contour_length’, 30, 99999, -0.5, 0.5)
    union_adjacent_contours_xld (SelectedContours2, UnionContours2, 30, 1, ‘attr_keep’)
    fit_rectangle2_contour_xld (UnionContours2, ‘tukey’, -1, 0, 0, 3, 2, Row2, Column2, Phi2, Length21, Length22, PointOrder2)
    gen_rectangle2_contour_xld (Rectangle2, Row2, Column2, Phi2, Length21, Length22)
    dev_clear_window ()
    dev_set_colored (3)
  • dev_display (Image)
    dev_display (SelectedContours1)
    dev_display (SelectedContours2)
    disp_continue_message (WindowID, ‘black’, ‘true’)
    stop ()
    dev_set_color (‘white’)
    dev_display (UnionContours1)
    dev_set_color (‘yellow’)
    dev_display (UnionContours2)
    disp_continue_message (WindowID, ‘black’, ‘true’)
    stop ()
    dev_display (Image)
    dev_set_color (‘white’)
    dev_display (Rectangle1)
    gen_cross_contour_xld (Cross1, Row1, Column1, 6, Phi1)
    dev_display (Cross1)
    dev_set_color (‘yellow’)
    dev_display (Rectangle2)
    gen_cross_contour_xld (Cross2, Row2, Column2, 6, Phi2)
    dev_display (Cross2)
    distance_pp (Row1, Column1, Row2, Column2, Distance)
    DifferenceOrientation := Phi1 - Phi2
    set_tposition (WindowID, 10, 10)
    write_string (WindowID, ‘Distance between centers: ’ + Distance′.3′+′pixel′)settposition(WindowID,25,10)writestring(WindowID,′Differencebetweenorientations:′+deg(DifferenceOrientation)'.3' + ' pixel') set_tposition (WindowID, 25, 10) write_string (WindowID, 'Difference between orientations: ' + deg(DifferenceOrientation).3+pixel)settposition(WindowID,25,10)writestring(WindowID,Differencebetweenorientations:+deg(DifferenceOrientation)’.2’ + ’ deg’)
    dev_update_window (‘on’)

处理思路

这个例子是主要讲解了矩形边缘的拟合。

后记

大家有什么问题可以向我提问哈,我看到了第一时间回复,希望在学习的路上多多结交良师益友。

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

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

工业机器人智能发展:视觉和触觉感应简化

机器人工业协会(Robotic Industries Association)指出,从2003到2005年间,北美机器人工业以20%的平均年增长率发展。在汽车市场需求疲软以及外国厂商的压力不断增加的背景下,这一成就是如何取得的?成本的普遍…

ASP站点无法访问怎么办

确保启用了目录浏览功能 转载于:https://www.cnblogs.com/acetaohai123/p/6571257.html

五、案例-指令参考-freemarker指令、表达式

案例-指令参考描述&#xff1a;本人自己测试写了一遍&#xff0c;如有错的地方&#xff0c;懂freemarker的朋友望指点指点&#xff01; 案例-指令参考 表达式 一、 Assign 1、<#assign name1"北京" name2"上海" name3"广东"> 调用&#xf…

PartitionMotionSearch()函数

encode_one_macroblock()函数中的运动估计分为两大块&#xff0c;对于宏块级的三种模式&#xff0c;分块后直接对patition依次调用PartitionMotionSearch()函数&#xff1b;而对于亚宏块级的&#xff08;含8x8, 8x4,4x8,4x4&#xff09;模式&#xff0c;首先将宏块拆分为4个88子…

201521123017 《Java程序设计》第4周学习总结

1. 本周学习总结 2. 书面作业 Q1.注释的应用 使用类的注释与方法的注释为前面编写的类与方法进行注释&#xff0c;并在Eclipse中查看。(截图) Q2.面向对象设计(大作业1&#xff0c;非常重要) 2.1 将在网上商城购物或者在班级博客进行学习这一过程&#xff0c;描述成一个故事。…

完整的VAL3程序

start() begin//延时10秒 delay(5)//初始化变量call init()//清空原有运动堆栈resetMotion()//建立上电任务taskCreate "robotpower",100,robotpower()wait(isPowered())//建立生产任务taskCreate "ProductionCycle",10,ProductionCycle()//建立安全区域…

iOS WebView 加载本地资源(图片,文件等)

NSString *path [[NSBundle mainBundle] pathForResource:"关于.docx" ofType:nil]; NSURL *url [NSURL fileURLWithPath:path]; NSLog("%", [self mimeType:url]); //webview加载本地文件&#xff0c;可以使用加载数据的方式 //第一个诶参数是一个N…

本文以H264视频流为例,讲解解码流数据的步骤。

本文以H264视频流为例&#xff0c;讲解解码流数据的步骤。 为突出重点&#xff0c;本文只专注于讨论解码视频流数据&#xff0c;不涉及其它&#xff08;如开发环境的配置等&#xff09;。如果您需要这方面的信息&#xff0c;请和我联系。 准备变量 定义AVCodecContext。如…

2008-2021年商业银行数据(农商行、城商行、国有行、股份制银行)

2008-2021年商业银行数据&#xff08;农商行、城商行、国有行、股份制银行&#xff09; 1、时间&#xff1a;2008-2021年 2、范围&#xff1a;1700银行 3 、指标&#xff1a;证券简称、year、证券代码、资产总计、负债合计、所有者权益合计、利润总额、净利润、贷款总额、存…

EPSON 任务同步 改写

有时需要在多个任务执行之前来使它们同步。如果预先知道执行每项任务所需要的时间&#xff0c;它们就可以通过简单地等待由最慢的任务产生的信号来实现同步。然而&#xff0c;如果不知道那个任务是最慢的&#xff0c;就需要使用一个更复杂的同步化机制&#xff0c;如下所示VAL …

线程池的简单使用

创建指定线程数量的线程池 private static ExecutorService scheduledTaskFactoryExecutor null;private boolean isCancled false;private static class ThreadFactoryTest implements ThreadFactory { Overridepublic Thread newThread(Runnable r) { Thread threa…

异常--自定义异常类

为什么要调用父类构造器? http://blog.csdn.net/rockpk008/article/details/52951856 转载于:https://www.cnblogs.com/dwj-ngu/p/6576382.html

利用ffmpeg来进行视频解码的完整示例代码

&#xff08;转&#xff09;利用ffmpeg来进行视频解码的完整示例代码&#xff08;H.264&#xff09; Decode() { FILE * inpf; int nWrite; int i,p; int nalLen; unsigned char * Buf; int got_picture, consumed_bytes; unsigned char *DisplayBuf; Displ…

安卓观看免费视频

http://www.imooc.com/search/course?wordsAndroid%E6%94%BB%E5%9F%8E%E7%8B%AE%E7%AC%AC%E4%B8%80%E8%AF%BE&page3 http://www.imooc.com/course/list?candroid&src360onebox http://www.bilibili.com/video/av2788563/index_4.html http://www.imooc.com/course/pr…

EtherCAT 网站链接

http://www.ethercat.org.cn/cn.htm EtherCAT技术介绍 EtherCAT系统组成和工作原理 EtherCAT采用主从式结构&#xff0c;主站PC机采用标准的100Base-TX以太网卡&#xff0c;从站采用专用芯片。系统控制周期由主站发起&#xff0c;主站发出下行电报&#xff0c;电报的最大有效数…

IEC 6-1131/3的5种标准编程语言

用于开发控制系统和商业管理系统的TRACE MODE6编程工具面向不同领域的软件工程师. TRACE MODE6包含的五种编程语言为&#xff1a;Techno SFC、Techno LD、Techno FBD、Techno ST和Techno IL. 这些语言是下列IEC 6-1131/3标准语言的扩展&#xff1a; SFC&#xff08;顺序功能图…

ngRx 官方示例分析 - 4.pages

Page 中通过构造函数注入 Store&#xff0c;基于 Store 进行数据操作。 注意 Component 使用了 changeDetection: ChangeDetectionStrategy.OnPush. OnPush means that the change detectors mode will be set to CheckOnce during hydration. /app/containers/collection-page…

用ffmpeg把yuv格式转化为mpeg格式

http://blog.sina.com.cn/s/blog_5f5ad6a90100cs5k.html

方法:查询MongoDB数据库中最新一条数据(JAVA)

使用JAVA语言查询MongoDB中某个数据库某个集合的最新一条数据&#xff1a; MongoCollection<Document> cpu MongoClient.getDatabase("sysmgr").getCollection("cpu"); //获取所需集合 Document dbo cpu.find().sort(descending("time"…

NoPause/NoEmgAbort的任务 与后台任务的区别

NoPause/NoEmgAbort的任务示例 下面的例子显示了一个程序&#xff0c;可以监视控制器的错误并根据错误编号在发生错误时切换I/O On/Off。 Function main Xqt ErrorMonitor, NoEmgAbort : FendFunction ErrorMonitor Wait ErrorOnIf 4000 < SysErr And Syserr < 5999 T…