摘要: 需安装的第三方库:python3.5,PyQt5 , lxml1.Python3.5的安装Python3.5的下载:https://www.python.org/downloads/我的安装路径为D:\Program Files\Python35配置环境变量:电脑,右键属性,高级系统设置,环境变量, 阅读全文
posted @ 2020-08-18 11:01 闪光123 阅读(431) 评论(0) 推荐(0) 编辑
摘要: ubuntu16.04: mkdir ~/.pipgedit ~/.pip/pip.conf [global]index-url = https://pypi.tuna.tsinghua.edu.cn/simple/ [install]trusted-host = pypi.tuna.tsinghu 阅读全文
posted @ 2020-07-20 09:31 闪光123 阅读(176) 评论(0) 推荐(0) 编辑
摘要: win10 64位系统 Python3.7.8 第一步:先下载最新版本的BeautifulSoup4直接百度下载或者点击链接:https://www.crummy.com/software/BeautifulSoup/bs4/download/ 第二步:将下载的压缩包解压到Python安装路径第三步 阅读全文
posted @ 2020-07-14 11:07 闪光123 阅读(706) 评论(0) 推荐(0) 编辑
摘要: 1.nvidia-smi看看对应驱动的版本,如果没有还得先去下载驱动,https://www.nvidia.com/,或者先查询好显卡型号和驱动、cuda版本对应的关系,然后进入第二步,下载对应的安装包,包里有对应的驱动。 2.安装cuda, https://developer.nvidia.com 阅读全文
posted @ 2020-07-10 16:42 闪光123 阅读(5218) 评论(0) 推荐(0) 编辑
摘要: void DstEngine::nms(std::shared_ptr<DeviceStreamData> &input,std::shared_ptr<FaceInfo> &output, float nmsthreshold){ float iou = 0.f; float x1, y1, x2 阅读全文
posted @ 2020-06-16 15:54 闪光123 阅读(242) 评论(0) 推荐(0) 编辑
摘要: 1.安装依赖文件。 sudo apt-get install libprotobuf-dev libleveldb-dev libsnappy-dev libopencv-dev libhdf5-serial-dev protobuf-compilersudo apt-get install --n 阅读全文
posted @ 2020-06-11 12:01 闪光123 阅读(417) 评论(0) 推荐(0) 编辑
摘要: 突然就用不了pip3了,奇怪 强制重新安装pip3 wget https://bootstrap.pypa.io/get-pip.pysudo python3 get-pip.py 虽然有警告,但是表示看不懂,能用就行 阅读全文
posted @ 2020-06-11 11:09 闪光123 阅读(2265) 评论(0) 推荐(0) 编辑
摘要: 前提: Python3+qt5 1.官网下载 https://github.com/tzutalin/labelImg 2.解压并cd到解压的目录下 3.make qt5py3 4.python3 labelImg.py 阅读全文
posted @ 2020-05-29 09:58 闪光123 阅读(423) 评论(0) 推荐(0) 编辑
摘要: pip超时了,这样 pip --default-timeout=100 install XXX 但还是超时, pip --default-timeout=1000 install XXX 嘿嘿嘿,成功了 后来发现可以更改临时镜像,国内镜像源: 清华:https://pypi.tuna.tsinghu 阅读全文
posted @ 2020-05-27 16:10 闪光123 阅读(6126) 评论(0) 推荐(0) 编辑
摘要: 1.cmake:在http://www.cmake.org/files找到自己想下的版本,这里下载3.6.2 sudo apt-get install build-essential wget https://cmake.org/files/v3.6/cmake-3.6.2.tar.gztar xf 阅读全文
posted @ 2020-05-26 08:56 闪光123 阅读(693) 评论(0) 推荐(0) 编辑