遗忘海岸

江湖程序员 -Feiph(LM战士)

导航

上一页 1 2 3 4 5 6 ··· 44 下一页

2022年3月11日 #

redis简单测试

摘要: # Redis configuration file example # Note on units: when memory size is needed, it is possible to specify # it in the usual form of 1k 5GB 4M and so f 阅读全文

posted @ 2022-03-11 10:05 遗忘海岸 阅读(36) 评论(0) 推荐(0) 编辑

2022年2月28日 #

关于async与await的一点测试

摘要: Winform private async Task DoAsync() { Console.WriteLine("DoAsync_Befor:" + Thread.CurrentThread.ManagedThreadId); for (int i = 0; i < 10; i++) { awai 阅读全文

posted @ 2022-02-28 16:28 遗忘海岸 阅读(54) 评论(0) 推荐(0) 编辑

2022年1月11日 #

直线与圆弧插补采用DDS的模拟程序

摘要: 数字微分分析,本质是根据轨迹上的每个点的速度在各轴的分配比例转换成脉冲的分配比例 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System. 阅读全文

posted @ 2022-01-11 15:57 遗忘海岸 阅读(86) 评论(0) 推荐(0) 编辑

2021年9月19日 #

关于dyson sphere program的007发射

摘要: 考虑0轨道倾角0地轴倾角的情况,太阳跟行星都按点模型来,太阳光直射赤道并且是平行的, 太阳帆轨道垂直太阳赤道面,由于太阳帆轨道可以大到包括行星, 所以不能看成平行(当太阳轨道很小差不多贴到太阳时可以按平行来处理--但是计算得出最小角度在23度所以不能按这方式处理) 上图的beta角对应下图的alph 阅读全文

posted @ 2021-09-19 15:59 遗忘海岸 阅读(90) 评论(0) 推荐(0) 编辑

2021年9月11日 #

ADO.net一些测试

摘要: -- 主健字段不考虑null情况,每次都带 -- 非主健考虑null情况, @IsNuull_xxxx=1 -- 所以一条记录加载后到提交时被别人修改了 --那么更新返回数应该是0 报错{"违反并发性: UpdateCommand 影响了预期 1 条记录中的 0 条。"} -- 导致同一批次的Ins 阅读全文

posted @ 2021-09-11 09:52 遗忘海岸 阅读(99) 评论(0) 推荐(0) 编辑

2021年9月4日 #

动态创建报表XRChart

摘要: 重点是不指定Chart的DataSource与Series1的datasource 动态加载报表 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using 阅读全文

posted @ 2021-09-04 15:27 遗忘海岸 阅读(188) 评论(0) 推荐(0) 编辑

SpreadsheetControl的Api操作Excel

摘要: #region 填充Excel using (var spControl = new SpreadsheetControl()) { spControl.LoadDocument(tmpFilename); var wookBook = spControl.Document; var sheet = 阅读全文

posted @ 2021-09-04 09:38 遗忘海岸 阅读(577) 评论(0) 推荐(0) 编辑

2021年8月18日 #

冲压孔毛刺检测

摘要: * This example program shows how fit_rectangle2_contour_xld can be used to * detect manufacturing errors of punched holes in a metal part. The errors 阅读全文

posted @ 2021-08-18 17:04 遗忘海岸 阅读(99) 评论(0) 推荐(0) 编辑

var_threshold

摘要: 中文翻译参考:http://www.skcircle.com/?id=1563 对每个像素(使用withd x height模板)可以计算出这点的,亮值,暗值,平均,标准差等, 上面的图GrayValue是原始点的灰度值,Dark是这点的暗值标准,如果使用参数'dark',那么会选择那些比Dark曲 阅读全文

posted @ 2021-08-18 09:32 遗忘海岸 阅读(184) 评论(0) 推荐(0) 编辑

2021年8月13日 #

一些动态绑定数据代码

摘要: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System. 阅读全文

posted @ 2021-08-13 17:42 遗忘海岸 阅读(30) 评论(0) 推荐(0) 编辑

2021年8月12日 #

直线与圆的拟合测量

摘要: dev_close_window () read_image (Image, 'gj2') rgb1_to_gray (Image, Image) get_image_size (Image, Width, Height) dev_open_window (0, 0, Width / 2, Heig 阅读全文

posted @ 2021-08-12 15:47 遗忘海岸 阅读(85) 评论(0) 推荐(0) 编辑

圆的拟合__测量圆心距

摘要: read_image(Image, 'gj1') emphasize (Image, ImageEmphasize, 7, 7, 1) rgb1_to_gray (ImageEmphasize, GrayImage) threshold (GrayImage, Regions, 62, 255) * 阅读全文

posted @ 2021-08-12 09:30 遗忘海岸 阅读(247) 评论(0) 推荐(0) 编辑

2021年8月10日 #

halcon骨架与xld的区分

摘要: 骨架是一个像素宽度的region,轮廓是xld 阅读全文

posted @ 2021-08-10 16:58 遗忘海岸 阅读(322) 评论(0) 推荐(1) 编辑

dyn_threshold

摘要: //采用系统自带图片 read_image (Image, 'particle') *获取图像 dev_display (Image) *显示图像 threshold (Image, Large, 110, 255) *灰度阈值分割图像 dilation_circle (Large, LargeDi 阅读全文

posted @ 2021-08-10 08:23 遗忘海岸 阅读(520) 评论(0) 推荐(0) 编辑

2021年8月6日 #

模板匹配加测量Demo

摘要: * This example program shows the use of pattern matching with shape models* to locate an object. Furthermore, it shows how to use the detected positio 阅读全文

posted @ 2021-08-06 15:54 遗忘海岸 阅读(38) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 ··· 44 下一页