摘要: read_image (Image, 'circular_barcode') threshold (Image, Region, 0, 100) closing_circle (Region, RegionClosing, 3.5) connection (RegionClosing, Connec 阅读全文
posted @ 2022-01-04 23:31 LD_Dragon_sky 阅读(96) 评论(0) 推荐(0) 编辑
摘要: read_image (Image, 'printer_chip/printer_chip_01') get_image_size (Image, Width, Height) dev_open_window (0, 0, Width/3, Height/3, 'black', WindowHand 阅读全文
posted @ 2022-01-04 23:29 LD_Dragon_sky 阅读(259) 评论(0) 推荐(0) 编辑
摘要: 区域操作 区域生成 以下得到的都是区域 read_image (Image, 'printer_chip/printer_chip_01') get_image_size (Image, Width, Height) dev_open_window (0, 0, Width/3, Height/3, 阅读全文
posted @ 2022-01-04 23:28 LD_Dragon_sky 阅读(616) 评论(0) 推荐(0) 编辑
摘要: *halcon基础编程 等号 := 不等号 # 注释号 * 字符串赋值 str := 'halcon' 等于比较符 if(X=10) 与: if(A>1 and A<30) 或: if(A>1 or A<30) 求反: if(not(A=10)) * 二值化 threshold (Image, Re 阅读全文
posted @ 2022-01-04 23:25 LD_Dragon_sky 阅读(236) 评论(0) 推荐(0) 编辑
摘要: 泛型 一.泛型的作用 跨类型可复用的代码:继承 和 泛型. 继承 ⇒ 基类 泛型 ⇒ 带有"(类型)占位符"的"模板" 二.泛型类型 泛型会声明类型参数-泛型的消费者需要提欧共类型参数来把占位符类型填充上. // 泛型类 public class Stack<T>{ int position; T[ 阅读全文
posted @ 2021-11-12 17:13 LD_Dragon_sky 阅读(62) 评论(0) 推荐(0) 编辑
摘要: WPF WPF 全称 Windows Presentation Foundation WPF 又叫 Windows呈现基础 Windows用户界面框架, .net framework3.0一部分,同一的编程模型,语言框架,**做到了页面设计与后端开发分离! **多媒体支持,制作动画. 特点: 1. 阅读全文
posted @ 2021-11-11 08:23 LD_Dragon_sky 阅读(41) 评论(0) 推荐(0) 编辑
摘要: WPF 开发工具:Visual Studio 2019 16.11 Community 基础框架:.NET5 Framework4.8 UI框架:WPF 事件驱动 数据驱动 行为绑定: using System; using System.Collections.Generic; using Sys 阅读全文
posted @ 2021-11-09 09:04 LD_Dragon_sky 阅读(224) 评论(0) 推荐(0) 编辑
摘要: 深度学习训练工具VisionTrainV1.3.0链接:https://pan.baidu.com/s/1dH48eL0JEMiP1T1c_QdMCQ 提取码:1111 阅读全文
posted @ 2021-08-16 08:41 LD_Dragon_sky 阅读(1669) 评论(0) 推荐(0) 编辑
摘要: 类 基础语法 [访问修饰符][修饰符] class 类名{ 字段; 属性; 方法; } 实例化一个对象 classStudy myInfo = new classStudy(); // 生成一个对象 myInfo.Age = 18; // 设置字段 myInfo.Name = "lddragon"; 阅读全文
posted @ 2021-07-28 10:21 LD_Dragon_sky 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 转:https://bbs.hikrobotics.com/post/69da9f148ea449929e894b8243615b00 SC7000深度学习模型转换操作 一、SC7000智能相机内置芯片,可以使用图像分类、目标检测、字符识别等深度学习算法模块,在PC端使用VM训练的模型需要经过转换才 阅读全文
posted @ 2021-07-20 15:56 LD_Dragon_sky 阅读(243) 评论(1) 推荐(0) 编辑