摘要: 目录 QT安装 配置Qt环境 创建快捷图标 opencv配置 1 QT安装 第一步:到官网http://download.qt.io/archive/qt/下载 Qt 安装包,此处本人安装的是 qt-opensource-linux-x64-5.7.0.run; 第二步:打开终端,输入命令:“sud 阅读全文
posted @ 2021-05-18 11:27 CVerTian 阅读(988) 评论(0) 推荐(0) 编辑
摘要: 目录 代码下载 更改配置及编译 测试初始权重 准备自己的数据集 划分测试集和训练集 将voc文件格式转为yolo文件格式(xml->txt) 训练 测试 1 代码下载 首先把代码下载下来,可以用下面命令下载,也可以直接点击上面代码链接下载。 git clone https://github.com/ 阅读全文
posted @ 2021-05-17 12:46 CVerTian 阅读(2338) 评论(0) 推荐(0) 编辑
摘要: 目录 获取交叉编译工具链 工具链的安装 异常问题解决 1 获取交叉编译工具链 解压toolchain.part1.rar和toolchain.part2.rar,得到arm-himix200-linux.tgz。 执行 sudo tar -zxvf arm-himix200-linux.tgz su 阅读全文
posted @ 2021-05-13 15:58 CVerTian 阅读(676) 评论(0) 推荐(0) 编辑
摘要: 1 安装VMware 2 创建虚拟机 (ubuntu18.4) 3 安装编译环境 sudo apt-get install build-essential 阅读全文
posted @ 2021-05-12 17:33 CVerTian 阅读(242) 评论(0) 推荐(0) 编辑
摘要: 目录 下载darknet代码并测试 红外车载数据集及训练文件准备 训练与测试 1、下载darknet代码并测试 1.1 下载代码 git clone https://github.com/pjreddie/darknet 1.2 编译代码 cd darknet1.2.1 修改Makefile文件 1 阅读全文
posted @ 2021-05-11 16:39 CVerTian 阅读(316) 评论(0) 推荐(0) 编辑
摘要: 安装好后opencv后执行下面这条语句的时候出错: pkg-config --cflags opencvPackage opencv was not found in the pkg-config search path.Perhaps you should add the directory co 阅读全文
posted @ 2021-05-08 13:35 CVerTian 阅读(2164) 评论(0) 推荐(0) 编辑
摘要: 1 下载anaconda安装包(Anaconda3-2020.11-Linux-x86_64.sh) 2 安装 sh Anaconda3-2020.11-Linux-x86_64.sh 回车->服务条款往下翻(按空格键)->yes 然后输入安装路径,直接回车则用默认路径 安装结束后输入yes完成an 阅读全文
posted @ 2021-05-07 17:10 CVerTian 阅读(471) 评论(0) 推荐(0) 编辑
摘要: 1 下载opencv4.1源码并解压 unzip opencv-4.1.0.zip 2 安装相关软件包 sudo apt-get install build-essential sudo apt-get install libgtk2.0-dev sudo apt-get install libav 阅读全文
posted @ 2021-05-07 15:53 CVerTian 阅读(100) 评论(0) 推荐(0) 编辑
摘要: 1 卸载(deb方式安装的cuda)卸载过程忘截图了,过程是: sudo apt-get remove cuda sudo apt autoremove sudo apt-get remove cuda*然后切换到CUDA所在目录:cd /usr/local/删除CUDA-11.0目录:sudo r 阅读全文
posted @ 2021-05-06 16:45 CVerTian 阅读(2976) 评论(0) 推荐(0) 编辑
摘要: 1 安装显卡驱动(460.27.04) 见上一篇博文。 2 安装CUDA (1) 下载cuda(cuda_11.2.0_460.27.04_linux.run) (2)禁用nouveau 新建一个文本/etc/modprobe.d/blacklist-nouveau.conf(如通过sudo vim 阅读全文
posted @ 2021-05-06 16:40 CVerTian 阅读(904) 评论(1) 推荐(0) 编辑