摘要: 原博客迁移到:https://blog.csdn.net/u013171226/article/details/107680309 查看/usr/local/cuda-10.0/bin下是否有nvcc可执行程序,如果有则说明nvcc没有被设置为系统变量 vim ~/.bashrc 然后在末尾添加 e 阅读全文
posted @ 2020-05-28 21:37 cumtchw 阅读(1124) 评论(0) 推荐(0) 编辑
摘要: 原博客迁移到:https://blog.csdn.net/u013171226/article/details/107680308 在nvidia jetson xavier NX安装了opencv,然后编译darknet,提示error: ‘IplImage’ does not name a ty 阅读全文
posted @ 2020-05-28 21:32 cumtchw 阅读(1623) 评论(0) 推荐(0) 编辑
摘要: 博客搬移到:https://blog.csdn.net/u013171226/article/details/107680267 阅读全文
posted @ 2020-05-28 21:28 cumtchw 阅读(1604) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/zong596568821xp/article/details/80268034 上面这篇博客里面有安装jtop的具体方法,sudo -H pip install jetson-stats, 但是使用这个命令需要首先安装pip,用apt install 安 阅读全文
posted @ 2020-05-28 21:05 cumtchw 阅读(3029) 评论(0) 推荐(0) 编辑
摘要: 博客搬移到:https://blog.csdn.net/u013171226/article/details/107680307 阅读全文
posted @ 2020-05-28 15:18 cumtchw 阅读(2953) 评论(0) 推荐(0) 编辑
摘要: 利用Python随机删除一半数量的图片 import os import random num = 0; for image_name in os.listdir("./data"): feed = random.randint(0, 10) if feed <= 5: os.remove(os.p 阅读全文
posted @ 2020-05-28 09:31 cumtchw 阅读(555) 评论(0) 推荐(0) 编辑