Project

General

Profile

News

代码规范

Added by yanhua over 2 years ago

1. 编写语言C#
2. UI编码风格WPF MVVM 模式
2.1 WPF基础介绍
https://www.cnblogs.com/chillsrc/p/4464023.html
2.2参考样例代码:JZUserControls\Defect\UCClassificationSetting.xaml.cs
关键字:数据绑定、依赖属性
3. UI注意事项-需支持中英文切换
1行放3个 button 的样例(1.用Grid控制控件的位置,2.用style控制控件的外观)
<Grid Grid.Row="0">
<Grid.ColumnDefinitions>
<ColumnDefinition/>
<ColumnDefinition/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<Button Style="{StaticResource RecipeBtnStyle}" Content="{DynamicResource CreatePattern}" Grid.Column="0" Margin="5"/>
<Button Style="{StaticResource RecipeBtnStyle}" Content="{DynamicResource CreateMask}" Grid.Column="1" Margin="5"/>
<Button Style="{StaticResource RecipeBtnStyle}" Content="{DynamicResource TestRecognize}" Grid.Column="2" Margin="5"/>
</Grid>
备注:已经写了很多控件风格了 - Styles.xaml,重复的代码放置在这些控件风格里。

redmine开启https访问方式

Added by yanhua over 2 years ago

在httpd.conf增加一行配置和redmine配置中开启https协议
https://blog.csdn.net/weixin_33941350/article/details/92775137
1、打开Bitnami Redmine下apache的配置文件:D:\Bitnami\apache2\conf\httpd.conf

2、搜索定位找到以下信息(在271行左右,最好使用notepad++打开):

</Directory>

#

  1. DirectoryIndex: sets the file that Apache will serve if a directory
  1. is requested.

#

<IfModule dir_module>

DirectoryIndex index.html index.php

</IfModule>

3、然后在</Directory>后添加一行:RequestHeader set X_FORWARDED_PROTO 'https'

数据库SQLLite编辑器的安装遇到的问题

Added by yanhua over 2 years ago

注册步骤

前提:安装后成功不要打开。
1.将Keygen复制到图形化工具安装目录中;
2.选择MySQL,点击Patch,会在安装目录生成注册补丁;
3.点击Keygen对应栏目的Generate生成序列号,这时先禁用网络或断网,打开图形化工具选择注册,填入序列号,点击激活后选择手动激活;
4.这个时候会生成一串请求码,将其粘贴到Keygen,点击Activation Code对应栏目的Generate生成激活码;
5.将激活码粘贴到图形化工具,注册成功。
注册步骤

安装包的下载位置如下:

链接:https://pan.baidu.com/s/1_wREL_o8QmWJrKGu2dle8g?pwd=1234
提取码:1234
--来自百度网盘超级会员V5的分享

图像拼接里的路径规划(8-4-2022 飞层-钉钉私信)

Added by yanhua over 2 years ago

1、根据校准的spin chuck center 以及wafer尺寸,计算出扫描范围。
2、根据选择的物镜、相机的尺寸、重叠率,得到XY方向的扫描
3、根据1、2计算出每一行的扫描的起点和终点坐标
关注点:图像宽和高以及自动聚焦功能
飞层答:按照5%的重叠率(放到参数),相机尺寸固定,根据选择的镜头,获取像元标定的文件,计算出行高

(11-20/22)

Also available in: Atom