摘要: 相关算子链接:https://www.mvtec.com/doc/halcon/12/en/toc_2dmetrology.html 参考案例: apply_metrology_model_diamond.hdev apply_metrology_model.hdev 基本流程: 1,创建计量模型 阅读全文
posted @ 2021-04-26 22:09 默默依然 阅读(2943) 评论(1) 推荐(0) 编辑
摘要: *采图list_files ('E:/Halcon/Halcon练习/Week 03/day 04/作业/board', ['files','follow_links'], ImageFiles)tuple_regexp_select (ImageFiles, ['\\.(tif|tiff|gif| 阅读全文
posted @ 2021-04-22 22:22 默默依然 阅读(2252) 评论(0) 推荐(0) 编辑
摘要: Form 无边框 外观->FormBorderStyle None 屏幕中央弹出 布局->StartPosition CenterScreen PictureBox 顶端停靠 布局->Dock Top 图片拉伸占满控件大小 行为->SizeMode StretchImage Label 添加图片 外 阅读全文
posted @ 2021-03-29 14:39 默默依然 阅读(189) 评论(0) 推荐(0) 编辑
摘要: string[] s = new string[5]; 最常见的数组,中括号[ ],通过下标访问,即通过索引访问 关于索引器 class Person { Dictionary<string, string> dic = new Dictionary<string, string>(); publi 阅读全文
posted @ 2021-02-13 17:09 默默依然 阅读(79) 评论(0) 推荐(0) 编辑
摘要: 1,在电脑里搜索*.tbd文件, 许多等待一段时间! 2,将所有的.tbd文件,全部删除! 3,直接重启电脑 4,恢复如初! 阅读全文
posted @ 2021-02-11 20:16 默默依然 阅读(3247) 评论(1) 推荐(2) 编辑
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.IO; 4 using System.Reflection; 5 using System.Text; 6 7 namespace IO目录管理 8 { 9 clas 阅读全文
posted @ 2021-02-11 16:26 默默依然 阅读(847) 评论(0) 推荐(0) 编辑
摘要: 1,类型 结构:值类型;存储在栈中 类:应用类型;存储在堆中 2,声明语法 结构:struct 类:class 相关示例: //声明类 public class PersonClass { //字段、属性、方法、构造函数 //不赘述 } //声明结构 public struct PersonStru 阅读全文
posted @ 2021-02-11 01:00 默默依然 阅读(287) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-02-10 23:58 默默依然 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 生成解决方案 F6,生成项目Shift+F6 调试执行F5,终止调试执行Shift+F5 执行调试Ctrl+F5 查找下一个F3,查找上一个Shift+F3 附加到进程Ctrl+Alt+P,逐过程F10,逐语句执行F11 切换断点F9(添加或取消断点) 运行至光标处Ctrl+F10 跳出当前方法Sh 阅读全文
posted @ 2021-02-10 23:22 默默依然 阅读(542) 评论(0) 推荐(0) 编辑
摘要: C# 7.2出了一个private protected访问控制符:private protected - C# 参考 在本程序集中 internal 相当于 public protected internal 相当于 internal 相当于 public private protected 相当于 阅读全文
posted @ 2021-02-10 14:16 默默依然 阅读(90) 评论(0) 推荐(1) 编辑