上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 97 下一页
摘要: python paddleocr 增加识别速度的方法 切记长度不要超过960px 1 模型压缩 2 enable_mkldnn=True,use_tensorrt=True,use_angle_cls=False 3用GPU 注意 GPU要第二次识别才会加速 阅读全文
posted @ 2021-09-30 22:08 newmiracle宇宙 阅读(3623) 评论(0) 推荐(0) 编辑
摘要: mysql 子查询少用 用了子查询 就没有索引了 。。。所以一般用缓存代替 或者其他方法代替 阅读全文
posted @ 2021-09-30 17:38 newmiracle宇宙 阅读(43) 评论(0) 推荐(0) 编辑
摘要: mysql 临时表代替in的方法 public function infengzhuang($ziduanstr = '', $table = '',$whereziduan='',$instr = '', $wherestr = '') { $haomiao = $this->get_millis 阅读全文
posted @ 2021-09-30 11:00 newmiracle宇宙 阅读(700) 评论(0) 推荐(0) 编辑
摘要: Create temporary table new_table_name1 (Select * from aa_copy_copy); mysql创建临时表不用创建临时表结构的方法 阅读全文
posted @ 2021-09-30 09:43 newmiracle宇宙 阅读(113) 评论(0) 推荐(0) 编辑
摘要: GPU版本比CPU版本复杂太多了 安装要耐得住性子啊 1 先安装个显卡驱动 打开看看 显卡驱动支持的cuda版本是多少 2 如果是10.1 那就去下个10.1 https://developer.nvidia.com/cuda-10.1-download-archive-base?target_os 阅读全文
posted @ 2021-09-29 09:06 newmiracle宇宙 阅读(932) 评论(0) 推荐(0) 编辑
摘要: python获取颜色范围 img_src = Image.open('testluban.jpg') img_size=img_src.size; img_width=img_size[0]; img_height=img_size[1]; # 转换图片的模式为RGBA img_src = img_ 阅读全文
posted @ 2021-09-28 13:46 newmiracle宇宙 阅读(501) 评论(0) 推荐(0) 编辑
摘要: paddleocr提高识别的方法 1用官方的完整模型包 ocr = PaddleOCR(use_angle_cls=True, lang="ch",det_model_dir="123/",rec_model_dir="321/") # need to run only once to downlo 阅读全文
posted @ 2021-09-28 09:08 newmiracle宇宙 阅读(1995) 评论(2) 推荐(1) 编辑
摘要: python3安装pyqt5 一定要3.7安装 不然会报错 版本不兼容 阅读全文
posted @ 2021-09-27 15:44 newmiracle宇宙 阅读(90) 评论(0) 推荐(0) 编辑
摘要: yolov5安装教程 在anaconda环境下安装 新建个 yolov5文件夹 先下个yolov5 https://github.com/ultralytics/yolov5 ps:必须是英文路径 不能中文路径不然训练的时候识别不了 然后 pip install -r requirements.tx 阅读全文
posted @ 2021-09-23 09:53 newmiracle宇宙 阅读(1286) 评论(0) 推荐(0) 编辑
摘要: python PaddleOCR安装方法 最好用python3.7 保证各个模块的兼容 要在anaconda环境下安装 1 http://www.cppcns.com/jiaoben/python/366474.html 里面走一遍 2 环境变量设置下 nvidia-smi 设置完必须重启anaco 阅读全文
posted @ 2021-09-22 11:25 newmiracle宇宙 阅读(2233) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 97 下一页