会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
首页
新随笔
订阅
管理
上一页
1
···
74
75
76
77
78
79
80
81
82
···
338
下一页
2022年5月3日
Jupyter Notebook 琐碎知识点
摘要: 在markdown模式下输入 a[0][0] = 0 往往不会显示正确的结果。这时可以使用 转义 (反斜杠)来解决这个问题: a\[0\]\[0\] = 0 jupyter notebook里面的 in [ ]中括号里面的数字含义,这个数字就是运行这段代码的次数。 查看Jupyter Noteboo
阅读全文
posted @ 2022-05-03 18:20 emanlee
阅读(555)
评论(0)
推荐(0)
2022年4月26日
opencv读取图像文件
摘要: 安装 cv2, 即安装 opencv-python import cv2 import numpy as np img_bgr = cv2.imread('test_image_cv2.jpg') #读取图像 print(img_bgr.shape) img_hsv = cv2.cvtColor(i
阅读全文
posted @ 2022-04-26 11:27 emanlee
阅读(174)
评论(0)
推荐(0)
2022年4月22日
Python Tkinter 鼠标和按键事件
摘要: Tkinter 鼠标键盘事件(一) 一: 鼠标事件 <Button-1> 鼠标左键单击 <Button-2> 鼠标中键单击 <Button-3> 鼠标右键单击 <1> = <Button-1> =<ButtonPress-1> <2> = <Button-2> = <ButtonPress-2> <
阅读全文
posted @ 2022-04-22 22:05 emanlee
阅读(3894)
评论(0)
推荐(0)
Python Tkinter 菜单示例
摘要: 没有子菜单的示例 import sys import tkinter as tk def hello_handler(): pass root = tk.Tk() root.title(u"菜单") # 创建一个菜单 menubar = tk.Menu(root) menubar.add_comma
阅读全文
posted @ 2022-04-22 21:34 emanlee
阅读(603)
评论(0)
推荐(0)
2022年4月20日
SolidWorks 入门级别操作
摘要: SolidWorks 快捷键: 缩放 缩小 Z 放大 Shift + Z 缩放 鼠标中键前后滚动 旋转 鼠标中键按下并且拖动 平移(显示上):Ctrl+方向键 保存 Ctrl+S 撤销 Ctrl+Z 一、 旋转模型: 1、水平或竖直 方向键 2、水平或竖直90度 Shift+方向键 3、顺时针或逆时
阅读全文
posted @ 2022-04-20 09:26 emanlee
阅读(5837)
评论(0)
推荐(0)
2022年4月19日
lnternal error: The Windows Installer for this product component did notrun as expected: lnstallExecute. SolidWorks
摘要: Successful: Checking EntitlementConfiguring Toolbox Unsuccessful: TeighaX (installation)Online Solutions Not Yet Attempted Resume SOLIDWORKS Installat
阅读全文
posted @ 2022-04-19 23:45 emanlee
阅读(379)
评论(0)
推荐(0)
2022年4月18日
python 图像处理
摘要: python 图像处理学习路线 python语言基础 numpy数字图像处理理论基础,冈萨雷斯的《数字图像处理第三版》 图像处理开源库,OpenCV cv2 (pip intall opencv-python) python 图像处理 入门级别的资料: https://blog.csdn.net/j
阅读全文
posted @ 2022-04-18 21:53 emanlee
阅读(200)
评论(0)
推荐(0)
2022年4月15日
Python pip Caused by SSLError("Can't connect to HTTPS URL because the SSL module is not available.")
摘要: Windows 10, Python 3.8 pip install opencv-python Could not fetch URL https://pypi.org/simple/pip/: There was a problem confirming the ssl certificate:
阅读全文
posted @ 2022-04-15 21:12 emanlee
阅读(1422)
评论(0)
推荐(0)
2022年4月14日
Windows 查看开机使用的时间
摘要: Windows 查看开机启动使用的时间 本电脑(此电脑)-- 右键 -- 管理 事件查看器-- Windows日志 -- 系统 -- 右侧 查找 -- 输入 3106 -- 查找下一个 Windows 2003: 使用 systeminfo 命令查看
阅读全文
posted @ 2022-04-14 20:50 emanlee
阅读(3794)
评论(0)
推荐(0)
2022年4月12日
解决PLSQL developer中文乱码问题
摘要: 解决PL SQL developer 中文汉字乱码问题, 中文都显示为问号 ??? 如下图所示。 一:检查以下编码 select userenv('language') from dual 二:检查以下编码 select * from V$NLS_PARAMETERS 三:检查Windows的系统
阅读全文
posted @ 2022-04-12 23:20 emanlee
阅读(5449)
评论(0)
推荐(1)
上一页
1
···
74
75
76
77
78
79
80
81
82
···
338
下一页