上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 76 下一页
摘要: 只需要安装VS Code即可,其他都不需要安装(如Git等)。 1、下载远程Git项目到本地目录 2、增删改,之后评论、提交 可以切换分支 add 到暂存区 git merge master 将远程仓库的最新代码同步到自己的分支 阅读全文
posted @ 2023-04-04 14:10 夕西行 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 其他模型转paddle,PaddlePaddle/X2Paddle: Deep learning model converter for PaddlePaddle. (『飞桨』深度学习模型转换工具) (github.com) 方式一,api转换,X2Paddle/x2paddle_api.md at 阅读全文
posted @ 2023-03-30 14:50 夕西行 阅读(771) 评论(0) 推荐(0) 编辑
摘要: 由于官方已经编译好的opencv版本较旧,所以本地编译。 除了指定opencv路径以外(不指定会自动下载,版本较旧),其他所有按官方步骤进行 FastDeploy/build_on_win_with_gui.md at release/1.0.5 · PaddlePaddle/FastDeploy 阅读全文
posted @ 2023-03-28 23:01 夕西行 阅读(1140) 评论(0) 推荐(0) 编辑
摘要: 版本: TensorRT-8.5.3.1.Windows10.x86_64.cuda-11.8.cudnn8.6 cuda_11.8.0_522.06_windows cudnn-windows-x86_64-8.6.0.163_cuda11-archive Zlib OpenCV 4.7.0 安装 阅读全文
posted @ 2023-03-22 22:13 夕西行 阅读(85) 评论(0) 推荐(0) 编辑
摘要: 本文是按照 tensorrtx/yolo11 at master · wang-xinyu/tensorrtx (github.com) 要求的版本进行下载安装,跨大版本不推荐,到处是坑、坑、坑~ 默认已经安装了VS2022、英伟达显卡的最新版本驱动。 1、cuda 11.8 下载地址:CUDA T 阅读全文
posted @ 2023-03-22 17:36 夕西行 阅读(1750) 评论(0) 推荐(0) 编辑
摘要: 1、windows缺少dirent.h(遍历文件和目录的API,通常unix系统会提供),先下载dirent.h放到 C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\inc 阅读全文
posted @ 2023-03-21 16:35 夕西行 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 之前计划抽取官网PaddleOCR的C++源码(C:\Paddle\PaddleOCR-dygraph\deploy\cpp_infer),整成落地的demo。 后来看到百度已经有了FastDeploy,这个方便落地部署。所以就不再扒拉源码了,下面为大家写了两篇博客,方便使用FastDeploy。 阅读全文
posted @ 2023-03-15 15:30 夕西行 阅读(1334) 评论(0) 推荐(0) 编辑
摘要: PaddleOCR有文本检测(detection)和文本识别(recognition)两个阶段,其中文本检测算法选用DB,文本识别算法选用CRNN,并在检测和识别模块之间添加文本方向分类器,以应对不同方向的文本识别。 当前最新版本为PP-OCRv3,可调节参数含义参考PaddleOCR/readme 阅读全文
posted @ 2023-03-15 14:55 夕西行 阅读(1825) 评论(0) 推荐(0) 编辑
摘要: QScrollArea+QOpenGLWidget 实现缩放,用于显示QImage。 先自定义QOpenGLWidget ,然后自定义QWidget(上图) glwidget.h #ifndef GLWIDGET_H #define GLWIDGET_H #include <QOpenGLWidge 阅读全文
posted @ 2023-03-10 17:24 夕西行 阅读(700) 评论(0) 推荐(0) 编辑
摘要: 1、主窗口关闭,主窗口上的dock窗口不需要特殊处理也会关闭,直接退出主程序。 2、主窗口关闭,需要在所有子窗口(单独new出来的非dock窗口)的构造函数中添加代码 this->setAttribute(Qt::WA_QuitOnClose, false); new子窗口的时候注意不加this(不 阅读全文
posted @ 2023-03-06 17:47 夕西行 阅读(1881) 评论(0) 推荐(1) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 76 下一页