摘要: 1、首先需要安装tesseract-ocr https://digi.bib.uni-mannheim.de/tesseract/ 2、安装python所需模块 pip install pytesseract 3、下载语言包 https://github.com/tesseract-ocr/tess 阅读全文
posted @ 2023-02-15 16:22 河北大学-徐小波 阅读(150) 评论(0) 推荐(0) 编辑
摘要: #coding=utf-8 from PIL import Image from PIL import ImageFilter im1=Image.open('img/gauss/1.jpg') im1=im1.filter(ImageFilter.GaussianBlur(radius=8)) i 阅读全文
posted @ 2023-02-15 14:46 河北大学-徐小波 阅读(32) 评论(0) 推荐(0) 编辑