2019年7月30日

halcon例程学习 一维测量之矩形边缘

摘要: ******************************************************************** *加载图片 read_image (Image, 'ic_pin') dev_close_window () dev_open_window_fit_image (Image, 0, 0, -1, -1, WindowHandle) dev_display (... 阅读全文

posted @ 2019-07-30 14:12 暗夜初雪 阅读(2337) 评论(0) 推荐(0) 编辑

halcon例程学习 一维测量之弧形边缘

摘要: ************************************************************************* *学习例程 measure_arc.hdev *date:2019/07/30 ************************************************************************* *读取图像 re... 阅读全文

posted @ 2019-07-30 10:50 暗夜初雪 阅读(1963) 评论(0) 推荐(0) 编辑

2019年7月29日

python 圆曲线

摘要: import numpy as np import matplotlib.pyplot as plt a = 2 t = np.linspace(0 , 2 * np.pi, 1024) X = a*np.cos(t) Y = a*np.sin(t) plt.title('$x=ρcosθ,y=ρs 阅读全文

posted @ 2019-07-29 15:35 暗夜初雪 阅读(287) 评论(0) 推荐(0) 编辑

python pygame黑客帝国的简单实现

摘要: #coding=utf-8 import pygame import random class gameSprite(pygame.sprite.Sprite): def __init__(self, image_name, speed=1): super().__init__() font = p 阅读全文

posted @ 2019-07-29 11:54 暗夜初雪 阅读(273) 评论(0) 推荐(0) 编辑

2015年11月26日

window下免安装版mysql使用

摘要: 1、修改环境变量2、修改my.ini文件,使用skip-grant-tables跳过密码验证3、添加服务mysqld installmysql --defaults-file="E:\工作\2015软件\mysql-5.7.9-winx64\my.ini"4、初始化安装mysqld --initia... 阅读全文

posted @ 2015-11-26 13:21 暗夜初雪 阅读(188) 评论(0) 推荐(0) 编辑

2015年10月14日

git学习

摘要: 学习网站:1、git有三个区:工作区 暂存区 分支区。2、工作区add到暂存区,暂存区commit到分支区master,最后push到远程仓库。3、一般开发时使用另外的分支,merge到master分区。4、远程仓库一般不包含工作区,配置时使用--bare参数初始化。5、eclipse先添加远程仓库... 阅读全文

posted @ 2015-10-14 23:57 暗夜初雪 阅读(104) 评论(0) 推荐(0) 编辑

导航