- 博客(3)
- 收藏
- 关注
原创 实现两个文件夹中相同文件名图片叠加
import cv2import osfile_namelist1 = 'gt_aug' # 文件夹1路径file_namelist2 = 'im_aug' # 文件夹2路径path = 'image' # 保存路径image1 = os.listdir(file_namelist1) # 读取文件夹名称print(image1)for i in image1: # 遍历文件夹中文件名 print(str(i)) img1 = cv2.imread(file.
2021-10-27 11:33:49
551
原创 解决测试卷积神经网络训练结果出现Failed to get convolution algorithm错误
我在使用pycharm训练yolo-v3结束测试过程中出现Failed to get convolution algorithm. This is probably because cuDNN failed to initialize, so try looking to see if a warning log message was printed above.问题,网上很多教程说是TensorFlow+Keras+cuda+cudnn版本号不对,但是有另外一台电脑同样的配置并没有出现问题,所以看到..
2021-10-27 11:29:40
283
原创 Ubuntu16.04系统搭建anaconda+pytorch环境
事先安装anaconda、下载cuda和cudnn 网上教程很多,基本不会出现什么问题,这里就不多赘述。本文使用的环境为Python3.6。首先创建pytorch环境 conda create -n 环境名称 Python=版本号然后进入环境,此处我的环境名称为pytorchconda activate pytorch然后查看是否是自己创建的Python版本号。Python --version若是自己的版本号就可以在此环境终端下载需要的包,若不是,则退出环境cond.
2021-10-11 15:06:42
272
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人