遗忘海岸

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

导航

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

2022年10月31日 #

Android 的一个通用列表单选AlertDialog封装

摘要: package cn.fstudio.util; import java.lang.reflect.Field; import java.lang.reflect.Method; import java.util.ArrayList; import java.util.Date; import ja 阅读全文

posted @ 2022-10-31 11:15 遗忘海岸 阅读(135) 评论(0) 推荐(0) 编辑

2022年6月2日 #

平面上圆相交求交点——定位模拟

摘要: 基站发出报文 {基站坐标:(a1,b1),发出时间:2022-06-02: 10:32:35.23422} 移动端传感器采集3个基站的数据,然后计算距离构建3个圆方程,两两相减得到3个线性方程,对方程组求最小二乘解 代码了引入了线性误差e作用于计算的距离上 clear clc close() c1= 阅读全文

posted @ 2022-06-02 10:31 遗忘海岸 阅读(115) 评论(0) 推荐(0) 编辑

2022年3月30日 #

H3C 5560S交换机恢复出厂设置

摘要: 1.用户视图,输入dir, 看到startup.cfg文件, 2.使用delete /unreserved startup.cfg 删除,确定认 3.reboot 命令,第一个提示按N, 第二个提示按Y // 配置ftp下载并覆盖 1.配置一个vlan xx , xx是ftp服务器在的vlan 2. 阅读全文

posted @ 2022-03-30 17:12 遗忘海岸 阅读(1426) 评论(0) 推荐(0) 编辑

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 遗忘海岸 阅读(41) 评论(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 遗忘海岸 阅读(56) 评论(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 遗忘海岸 阅读(91) 评论(0) 推荐(0) 编辑

2021年9月19日 #

关于dyson sphere program的007发射

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

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

2021年9月11日 #

ADO.net一些测试

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

posted @ 2021-09-11 09:52 遗忘海岸 阅读(103) 评论(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 遗忘海岸 阅读(195) 评论(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 遗忘海岸 阅读(587) 评论(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 遗忘海岸 阅读(105) 评论(0) 推荐(0) 编辑

var_threshold

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

posted @ 2021-08-18 09:32 遗忘海岸 阅读(187) 评论(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 遗忘海岸 阅读(31) 评论(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 遗忘海岸 阅读(88) 评论(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 遗忘海岸 阅读(257) 评论(0) 推荐(0) 编辑

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