03 2022 档案

摘要:1 import os 2 import cv2 as cv 3 4 path = "E:/codePro/python_pro/Yolo-Faster-XL_QR_pro/QR_Data/test/" 5 6 imgSavePath = "E:/codePro/python_pro/Yolo-Fa 阅读全文
posted @ 2022-03-21 10:53 赵家小伙儿 阅读(84) 评论(0) 推荐(0) 编辑
摘要:在执行vscode中 按F5调试python脚本时报以下错误Exception has occurred: ImportError DLL load failed: 找不到指定的程序。 File "F:\Github\ImageDiff\PythonDemo\main.py", line 3, in 阅读全文
posted @ 2022-03-17 16:34 赵家小伙儿 阅读(436) 评论(0) 推荐(0) 编辑
摘要:参考:https://zhuanlan.zhihu.com/p/72038532 阅读全文
posted @ 2022-03-15 10:07 赵家小伙儿 阅读(16) 评论(0) 推荐(0) 编辑
摘要:针对YoloV3 中的训练数据不足的情况,考虑数据增强的方式,同时改变原始数据标注的坐标。 1 import xml.etree.ElementTree as ET 2 import os 3 import numpy as np 4 from PIL import Image 5 import s 阅读全文
posted @ 2022-03-14 13:29 赵家小伙儿 阅读(249) 评论(0) 推荐(0) 编辑
摘要:Cmake下载:https://cmake.org/files/ Cuda 10.0下载:https://developer.nvidia.com/cuda-10.0-download-archive Cuda 11.3下载:https://developer.nvidia.com/cuda-11. 阅读全文
posted @ 2022-03-10 20:49 赵家小伙儿 阅读(943) 评论(0) 推荐(0) 编辑
摘要:从如下几个方法考虑: 1.)检查cuda及cudnn是否安装正确,检测方式 cmd命令行输入:ncnn -V,如果输出cuda的相关版本号,即安装无误; 2.)考虑cmake的版本是否过高,相对cuda版本; 3.)再configure进行下一步,尝试改变用vc14(vs2015)或者vc15(20 阅读全文
posted @ 2022-03-08 20:39 赵家小伙儿 阅读(457) 评论(0) 推荐(0) 编辑