
python
文章平均质量分 57
拿来巴你
这个作者很懒,什么都没留下…
展开
-
ERROR: Adobe Flashplayer or HTML5 Browser with WebGL or CSS3D support requ
PyQt5 QWebEngine VR界面出现 ERROR: Adobe Flashplayer or HTML5 Browser with WebGL or CSS3D support requ下面这几句可以防止界面闪烁,加多了会出现上图的样子,只要把其它的注释,留最后一句,可以解决界面闪烁,也可以播放VR视频。from PyQt5.QtCore import *from PyQt5.QtGui import * # QCoreApplication.setAttr原创 2021-11-16 18:32:53 · 2084 阅读 · 0 评论 -
paddleOCR使用pyinstaller打包为本地离线可执行程序(exe)
1、使用pyinstaller1、使用这个打包的前提是paddleOCR已经部署完成并且可以正常执行获取数据2、pip安装pyinstaller pip install pyinstaller3、安装完成后,指向需要打包文件的根目录在cmd指令下 输入(这里建议使用 pyinstaller -D 它会把所有需要引用的文件进行打包,并生成一个exe。 ) pyinstaller -D Python.py的源文件 会在根目录生成build和dist两个目录,点击dist目录中最底层目原创 2021-02-24 22:21:24 · 10411 阅读 · 14 评论 -
paddleocr +python3.8.5 简单安装部署调试(windows)
paddleocr +python3.8.5 简单安装部署调试(windows)1、paddleocr体验及下载2、部署准备3、python环境准备4、paddleocr代码下载5、部署完成1、paddleocr体验及下载1、PaddleHub提供了PaddleOCR代码下载地址:https://github.com/PaddlePaddle/PaddleOCR/tree/dygraph2、在线体验地址:https://www.paddlepaddle.org.cn/hub/scene/ocr2、原创 2021-02-24 18:25:00 · 2837 阅读 · 1 评论