当前位置: 首页 > news >正文

VisionPro —— CogPatInspectTool对比工具

一、CogPathInspectTool工具简介

CogPathInspectTool是VisionPro重要的工具,主要用于缺陷检测,通过将当前图像与“训练图像”对比,获取“原始差异图像”,再将“原始差异图像”与“阈值图像”进行对比,进而获取“阈值差异图像”得到最终的当前图像与训练图像的差异,通常差异区域为缺陷所在。该工具通常与CogPMAlignTool工具、CogBolbTool工具进行使用。

二、主要功能

  • 模式检测:根据图像中的特征和模式检测目标物体。
  • 位置和角度检测:检测并识别目标物体的位置和角度。
  • 多目标识别:支持同时检测和识别多个目标物体。
  • 结果分析:输出检测结果的位置信息和匹配度。

三、CogPathInspectTool操作流程实例

1、配置添加图形集合添加工具块

2、获取PMA工具:通过PMA工具进行准确的模版匹配,可以对其旋转缩放的角度进行精确的匹配

添加终端

3、配置CogPathInspectTool:在VisionPro中配置CogPathInspectTool工具,连接PMA终端,设置比较模型、偏侧高度阈值等参数,以便进行特征比较和缺陷识别。 

 

4、获取Blob工具:通过调用CogBlobTool工具,连接CogPatInspectTool输出的瑕疵图片Result.GetDifferenceImage(Absolute)

通过blob进行斑点检测 

5、 通过代码进行显示检测出的瑕疵,并进行显示

选择 C# Advanced Script脚本方式

脚本如下:

#region namespace imports
using System;
using System.Collections;
using System.Drawing;
using System.IO;
using System.Windows.Forms;
using Cognex.VisionPro;
using Cognex.VisionPro.ToolBlock;
using Cognex.VisionPro3D;
using Cognex.VisionPro.PMAlign;
using Cognex.VisionPro.PatInspect;
using Cognex.VisionPro.Blob;
#endregionpublic class CogToolBlockAdvancedScript : CogToolBlockAdvancedScriptBase
{#region Private Member Variablesprivate Cognex.VisionPro.ToolBlock.CogToolBlock mToolBlock;private CogGraphicCollection cc = new CogGraphicCollection(); // 创建图形集合 保存多个图形 例如多个labelCogGraphicLabel label = new CogGraphicLabel();#endregion/// <summary>/// Called when the parent tool is run./// Add code here to customize or replace the normal run behavior./// </summary>/// <param name="message">Sets the Message in the tool's RunStatus.</param>/// <param name="result">Sets the Result in the tool's RunStatus</param>/// <returns>True if the tool should run normally,///          False if GroupRun customizes run behavior</returns>public override bool GroupRun(ref string message, ref CogToolResultConstants result){// To let the execution stop in this script when a debugger is attached, uncomment the following lines.// #if DEBUG// if (System.Diagnostics.Debugger.IsAttached) System.Diagnostics.Debugger.Break();// #endifcc.Clear(); // 清空集合CogBlobTool blob = (CogBlobTool) mToolBlock.Tools[2];//    CogBlobTool blob = new CogBlobTool();//    blob = (CogBlobTool) mToolBlock.Tools[2];// Run each tool using the RunTool functionforeach(ICogTool tool in mToolBlock.Tools)mToolBlock.RunTool(tool, ref message, ref result);for(int i = 0;i < blob.Results.GetBlobs().Count;i++){CogPolygon p = new CogPolygon(); // 创建多边形p = blob.Results.GetBlobs()[i].GetBoundary(); // 设置多边形边界p.Color = CogColorConstants.Red;p.LineWidthInScreenPixels = 3;cc.Add(p);}double dou = blob.Results.GetBlobs().Count;if(dou == 0){label.SetXYText(20, 20, "无瑕疵");}else{label.SetXYText(20, 20, "有瑕疵");}return false;}#region When the Current Run Record is Created/// <summary>/// Called when the current record may have changed and is being reconstructed/// </summary>/// <param name="currentRecord">/// The new currentRecord is available to be initialized or customized.</param>public override void ModifyCurrentRunRecord(Cognex.VisionPro.ICogRecord currentRecord){}#endregion#region When the Last Run Record is Created/// <summary>/// Called when the last run record may have changed and is being reconstructed/// </summary>/// <param name="lastRecord">/// The new last run record is available to be initialized or customized.</param>public override void ModifyLastRunRecord(Cognex.VisionPro.ICogRecord lastRecord){foreach(ICogGraphic a in cc){mToolBlock.AddGraphicToRunRecord(a, lastRecord, "CogPMAlignTool1.InputImage", "ss");}mToolBlock.AddGraphicToRunRecord(label, lastRecord, "CogPMAlignTool1.InputImage", "ss");}#endregion#region When the Script is Initialized/// <summary>/// Perform any initialization required by your script here/// </summary>/// <param name="host">The host tool</param>public override void Initialize(Cognex.VisionPro.ToolGroup.CogToolGroup host){// DO NOT REMOVE - Call the base class implementation first - DO NOT REMOVEbase.Initialize(host);// Store a local copy of the script hostthis.mToolBlock = ((Cognex.VisionPro.ToolBlock.CogToolBlock)(host));}#endregion}

6、运行结果如下

 


http://www.mrgr.cn/news/65695.html

相关文章:

  • 探索数据结构:数组与链表
  • Go 函数的使用
  • ipv6的 fc00(FC00::/7) 和 fec0(FEC0::/10)
  • AMD显卡低负载看视频掉驱动(chrome edge浏览器) 高负载玩游戏却稳定 解决方法——关闭MPO
  • 克服奖励欺骗:Meta发布全新后训练方式CGPO,编程水平直升5%,打破RLHF瓶颈
  • 【Linux】进程间通信(命名管道、共享内存、消息队列、信号量)
  • 优选算法精品——双指针
  • 慢SQL优化方向
  • 今日 AI 简报|AI 提示词管理、端到端语音处理、会议助手、大模型集合平台等前沿技术集中亮相
  • LeetCode 0633.平方数之和:模拟
  • Linux之初体验
  • 四、 问题发现(性能测试)
  • java常用框架介绍
  • PCL 点云DEM网格图
  • 泛微开发修炼之旅--54ecology移动端配置自定义列表
  • 数据库条件查询排查——引号故障
  • 论文速读:简化目标检测的无源域适应-有效的自我训练策略和性能洞察(ECCV2024)
  • RabbitMQ交换机类型
  • 【LeetCode】移除链表中等于设定值的元素、反转链表
  • Hugging Face魔塔使用
  • 图的最短路径算法-迪杰斯特拉(Dijkstra)算法与弗洛伊德(Frolyd)算法
  • 暴雨高频交易服务器,解决金融行业痛点
  • Spring Mvc中拦截器Interceptor详解
  • 【Qt 实现截屏】
  • 2-143 基于matlab-GUI的脉冲响应不变法实现音频滤波功能
  • 热门鬼畜恶搞视频素材网站推荐