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

VisionPro、VisionMaster 多模板匹配分类(大球刀、小球刀、尖刀、三角刀)

 VisionPro

VisionMaster


分类:大球刀、小球刀、尖刀、三角刀 

VisionPro  实现

使用多模板匹配工具

 设置参数

小球刀

 大球刀

尖刀

三角刀

  

右键添加终端

代码实现

1.声明文本显示
 CogGraphicLabel label = new CogGraphicLabel();
 2.找到工具
CogPMAlignMultiTool pma = mToolBlock.Tools["CogPMAlignMultiTool1"]as CogPMAlignMultiTool;
3.声明类名
   
    string s = pma.Results.PMAlignResults[0].ModelName;
    label.Alignment = CogGraphicLabelAlignmentConstants.TopLeft;
    label.SetXYText(10, 10, s);
    label.Color = CogColorConstants.Red;
4.显示图片上
 mToolBlock.AddGraphicToRunRecord(label, lastRecord, "CogPMAlignMultiTool1.InputImage", "");
5.总体需要写的代码
CogGraphicLabel label = new CogGraphicLabel();
CogPMAlignMultiTool pma = mToolBlock.Tools["CogPMAlignMultiTool1"]as CogPMAlignMultiTool;
string s = pma.Results.PMAlignResults[0].ModelName;
    label.Alignment = CogGraphicLabelAlignmentConstants.TopLeft;
    label.SetXYText(10, 10, s);
    label.Color = CogColorConstants.Red;
mToolBlock.AddGraphicToRunRecord(label, lastRecord, "CogPMAlignMultiTool1.InputImage", "");
给大家放的cv代码
#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;
#endregion

public class CogToolBlockAdvancedScript : CogToolBlockAdvancedScriptBase
{
  #region Private Member Variables
  private Cognex.VisionPro.ToolBlock.CogToolBlock mToolBlock;
  #endregion
  CogGraphicLabel label = new CogGraphicLabel();
  /// <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();
    // #endif
    CogPMAlignMultiTool pma = mToolBlock.Tools["CogPMAlignMultiTool1"]as CogPMAlignMultiTool;

    // Run each tool using the RunTool function
    foreach(ICogTool tool in mToolBlock.Tools)
      mToolBlock.RunTool(tool, ref message, ref result);
   
    
    string s = pma.Results.PMAlignResults[0].ModelName;
    label.Alignment = CogGraphicLabelAlignmentConstants.TopLeft;
    label.SetXYText(10, 10, s);
    label.Color = CogColorConstants.Red;
    

    

    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)
  {
    mToolBlock.AddGraphicToRunRecord(label, lastRecord, "CogPMAlignMultiTool1.InputImage", "");
  }
  #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 REMOVE
    base.Initialize(host);


    // Store a local copy of the script host
    this.mToolBlock = ((Cognex.VisionPro.ToolBlock.CogToolBlock)(host));
  }
  #endregion

}


VisionMaster 实现

 

 

 点击运行,进行下面的操作

 


http://www.kler.cn/a/579415.html

相关文章:

  • C++修炼之路:初识C++
  • 【SegRNN 源码理解】【今天不水文系列】编码器部分理解
  • [java][OAuth2.0]OAuth2.0建表语句
  • 如何使用 GPT-4o 翻译播客声音
  • AI编程: 一个案例对比CPU和GPU在深度学习方面的性能差异
  • Nginx开启目录浏览功能时加密码的方法
  • Java 解决 TCP 粘包问题详解:原理与实战示例
  • 【flutter】TextField输入框工具栏文本为英文解决(不用安装插件版本
  • 爬虫案例十js逆向合肥滨湖会展中心网
  • 【大模型基础_毛玉仁】1.4 语言模型的采样方法
  • mac本地安装运行Redis-单机
  • 【前端】【组件】【vue2】封装一个vue2的ECharts组件,不用借助vue-echarts
  • MySQL创建数据库和表,插入四大名著中的人物
  • 深度学习与普通神经网络有何区别?
  • Ai大模型day02神经网络+深度学习
  • Agentic系统:负载均衡与Redis缓存优化
  • 刷题记录(LeetCode738 单调递增的数字)
  • Web3 的隐私保护机制:如何保障个人数据安全
  • Redis渐进式遍历数据库
  • rpc和proto