上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 13 下一页
摘要: 1.安装 首先,必须提前安装cmake、numpy、dlib,其中,由于博主所用的python版本是3.6.4(为了防止不兼容,所以用之前的版本),只能安装19.7.0及之前版本的dlib,所以直接pip install dlib会报错,需要pip install dlib==19.7.0 安装完预 阅读全文
posted @ 2022-06-10 11:28 CJK'sBLOG 阅读(401) 评论(0) 推荐(0)
摘要: 1.单文件复制: (1)把c:\1.txt复制到c:\2\文件夹下 copy c:\1.txt c:\2\ (2)把c:\1.txt复制到c:\1\文件夹下,并把它修改为777.docx copy c:\1.txt c:\1\777.docx (3)把c:\1\文件夹下所有txt文件复制到c:\2 阅读全文
posted @ 2022-06-10 11:28 CJK'sBLOG 阅读(353) 评论(0) 推荐(0)
摘要: 基于YOLO和PSPNet的目标检测与语义分割系统 源代码地址 概述 这是我的本科毕业设计 它的主要功能是通过YOLOv5进行目标检测,并使用PSPNet进行语义分割。 本项目YOLOv5部分代码基于 ultralytics YOLO V5 tag v5.0 。 相应地,我也使用了ultralyti 阅读全文
posted @ 2022-06-10 11:27 CJK'sBLOG 阅读(875) 评论(0) 推荐(0)
摘要: 听课笔记 1.IDE ① Eclipse (1) eclipse按 "ctrl" + "=" 就是放大, "ctrl" + "-" 就是缩小 (2)汉化: 可以点“help”->“install new software”->“add”,name填babel,网址为https://mirrors.t 阅读全文
posted @ 2022-06-10 11:27 CJK'sBLOG 阅读(30) 评论(0) 推荐(0)
摘要: 1、在程序最前面加:#define_CRT_SECURE_NO_DEPRECATE 2、按照vs规定进行修改,例如把scanf改为scanf_s; 3、在"项目" → "XXX属性" → "C/C++" → "常规" → "SDL检查"里关闭SDL检查 4、在项目属性 C/C++ 命令行中添加:/D 阅读全文
posted @ 2022-06-10 11:26 CJK'sBLOG 阅读(184) 评论(0) 推荐(0)
摘要: 1.删除安装插件C:/User/XXX/.vscode2.删除用户信息和缓存信息C:/User/XXX/AppData/Roaming/CodeC:/User/XXX/AppData/Roaming/Visual Studio Code 阅读全文
posted @ 2022-06-10 11:26 CJK'sBLOG 阅读(70) 评论(0) 推荐(0)
摘要: 1. Git Bash 选择一个本地代码仓库文件夹:D:/Github_Code/新建文件夹,然后在此目录打开git bash 依次进行: git init //首次需执行,之后可不用 git add . //点表示全部文件,还可以写目录或文件,如$ git add 1.txt git commit 阅读全文
posted @ 2022-06-10 11:24 CJK'sBLOG 阅读(134) 评论(0) 推荐(0)
摘要: path = '1024.png' extension = 'jpg' for i in range(1,len(path)): if (path[-i] == '.'):#找到后缀初始点 new_path = path.replace(path[-i+1:],extension)#替换后缀 bre 阅读全文
posted @ 2022-06-10 11:22 CJK'sBLOG 阅读(91) 评论(0) 推荐(0)
摘要: from PIL import Image IMG = '1.jpg' #设置图片文件 WIDTH = 300 #设置字符画的宽 HEIGHT =400 #设置字符画的高 OUTPUT = 'output5.txt' #设置存放字符画的文本文件 ascii_char = list("$@B%8&WM 阅读全文
posted @ 2022-06-10 11:22 CJK'sBLOG 阅读(38) 评论(0) 推荐(0)
摘要: def extension_replace(path,extension): for i in range(1,len(path)): if (path[-i] == '.'): new_path = path.replace(path[-i+1:],extension) break return 阅读全文
posted @ 2022-06-10 11:22 CJK'sBLOG 阅读(209) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 13 下一页