上一页 1 ··· 64 65 66 67 68 69 70 71 72 ··· 328 下一页
摘要: ImportError: cannot import name 'LightningEnum' from 'pytorch_lightning.utilities' (E:\Eprogramfiles\Anaconda3\lib\site-packages\pytorch_lightning\uti 阅读全文
posted @ 2022-05-03 20:49 emanlee 阅读(1204) 评论(0) 推荐(0) 编辑
摘要: 在markdown模式下输入 a[0][0] = 0 往往不会显示正确的结果。这时可以使用 转义 (反斜杠)来解决这个问题: a\[0\]\[0\] = 0 jupyter notebook里面的 in [ ]中括号里面的数字含义,这个数字就是运行这段代码的次数。 查看Jupyter Noteboo 阅读全文
posted @ 2022-05-03 18:20 emanlee 阅读(489) 评论(0) 推荐(0) 编辑
摘要: 安装 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 阅读(160) 评论(0) 推荐(0) 编辑
摘要: Tkinter 鼠标键盘事件(一) 一: 鼠标事件 <Button-1> 鼠标左键单击 <Button-2> 鼠标中键单击 <Button-3> 鼠标右键单击 <1> = <Button-1> =<ButtonPress-1> <2> = <Button-2> = <ButtonPress-2> < 阅读全文
posted @ 2022-04-22 22:05 emanlee 阅读(3713) 评论(0) 推荐(0) 编辑
摘要: 没有子菜单的示例 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 阅读(556) 评论(0) 推荐(0) 编辑
摘要: SolidWorks 快捷键: 缩放 缩小 Z 放大 Shift + Z 缩放 鼠标中键前后滚动 旋转 鼠标中键按下并且拖动 平移(显示上):Ctrl+方向键 保存 Ctrl+S 撤销 Ctrl+Z 一、 旋转模型: 1、水平或竖直 方向键 2、水平或竖直90度 Shift+方向键 3、顺时针或逆时 阅读全文
posted @ 2022-04-20 09:26 emanlee 阅读(5364) 评论(0) 推荐(0) 编辑
摘要: Successful: Checking EntitlementConfiguring Toolbox Unsuccessful: TeighaX (installation)Online Solutions Not Yet Attempted Resume SOLIDWORKS Installat 阅读全文
posted @ 2022-04-19 23:45 emanlee 阅读(327) 评论(0) 推荐(0) 编辑
摘要: python 图像处理学习路线 python语言基础 numpy数字图像处理理论基础,冈萨雷斯的《数字图像处理第三版》 图像处理开源库,OpenCV cv2 (pip intall opencv-python) python 图像处理 入门级别的资料: https://blog.csdn.net/j 阅读全文
posted @ 2022-04-18 21:53 emanlee 阅读(183) 评论(0) 推荐(0) 编辑
摘要: 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 阅读(1309) 评论(0) 推荐(0) 编辑
摘要: Windows 查看开机启动使用的时间 本电脑(此电脑)-- 右键 -- 管理 事件查看器-- Windows日志 -- 系统 -- 右侧 查找 -- 输入 3106 -- 查找下一个 Windows 2003: 使用 systeminfo 命令查看 阅读全文
posted @ 2022-04-14 20:50 emanlee 阅读(3761) 评论(0) 推荐(0) 编辑
上一页 1 ··· 64 65 66 67 68 69 70 71 72 ··· 328 下一页