上一页 1 ··· 8 9 10 11 12 13 下一页
摘要: python demo.py --checkpoint=resnet34_dh128_sbd --gpu=0 阅读全文
posted @ 2021-04-08 21:52 小小灰迪 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 读写xml文件 opencv fs1 = cv2.FileStorage("./Date/gpsPoints.xml", cv2.FILE_STORAGE_READ) endGps_Node = fs1.getNode("gpsMiddle") endGps_lat = endGps_Node.ge 阅读全文
posted @ 2021-04-08 21:01 小小灰迪 阅读(234) 评论(0) 推荐(0) 编辑
摘要: opencv的namedWindow报错 Traceback (most recent call last): File "/home/test.py", line 11, in <module> cv2.namedWindow('res') cv2.error: OpenCV(3.4.2) /tm 阅读全文
posted @ 2021-04-08 20:08 小小灰迪 阅读(90) 评论(0) 推荐(0) 编辑
摘要: 环境和上一篇安装caffe是一样的,安装openpose的难点主要是caffe的安装。。 正文。。。 依赖: Ubuntu20.04 cuda10.1 cudnn7.6.0 OpenCV4.5.1 Python 3.8+Numpy 1. 下载源码及模型 这一步下载速度可能很慢,除非你能xx,原因你们 阅读全文
posted @ 2021-04-02 13:59 小小灰迪 阅读(733) 评论(0) 推荐(0) 编辑
摘要: cuda11估计可行(可以试试^_^),实在折腾没办法了(降低了cudnn版本),装了cuda10.1+cudnn7.6.0 安装caffe的主要目的是用来装openpose的环境,但是实际上单独安装caffe环境并不能直接用到openpose上,需要下载openpose自带的caffe版本。这篇仅 阅读全文
posted @ 2021-03-31 21:30 小小灰迪 阅读(1559) 评论(0) 推荐(0) 编辑
摘要: 训练 python train.py --data data/voc.yaml --cfg models/yolov5l.yaml --weights weights/yolov5l.pt --batch-size 64 阅读全文
posted @ 2021-03-25 17:44 小小灰迪 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 查看显卡驱动: nvidia-smi 报错: NVIDIA-SMI has failed because it couldn't communicate with the NVIDIA driver. Make sure that the latest NVIDIA driver is instal 阅读全文
posted @ 2021-01-25 18:30 小小灰迪 阅读(1902) 评论(0) 推荐(0) 编辑
摘要: 和上一篇yolov3的流程差不多,只是更改yolo的cfg文件和预训练的权重不同,将操作移至./darknet/build/x64文件夹内,将./darknet/下的darknet执行文件复制到./darknet/build/x64/下 cfg主要更改 1. 分辨率为416*416,如果你的显卡内存 阅读全文
posted @ 2021-01-25 02:50 小小灰迪 阅读(1216) 评论(0) 推荐(0) 编辑
摘要: 获取目录下的所有文件 os.listdir() >>> my_list = ['a', 'b', 'c'] >>> for idx, val in enumerate(my_list): ... print(idx, val) 创建文件夹 porject_path = os.getcwd() pri 阅读全文
posted @ 2021-01-25 02:11 小小灰迪 阅读(119) 评论(0) 推荐(0) 编辑
摘要: tar/tar.gz 解包:tar zxvf filename.tar 打包:tar czvf filename.tar dirname 解压文件到指定文件夹: tar -zxvf fenci.py.tar.gz -C pythontab/ zip 解压:unzip filename.zip / u 阅读全文
posted @ 2021-01-24 19:31 小小灰迪 阅读(40) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 下一页