python实现图像识别功能

Serafina ·
更新时间:2024-11-14
· 600 次阅读

本文实例为大家分享了python实现图像识别的具体代码,供大家参考,具体内容如下

#! /usr/bin/env python from PIL import Image import pytesseract url='img/denggao.jpeg' image=Image.open(url) #image=image.convert('RGB') # RGB image=image.convert('L') # 灰度 image.load() text=pytesseract.image_to_string(image) print text #image.show() r'''''# zhongwen_url = 'img/zhongwen003.png' import os fn = "aaaa" # sudo apt-get install tesseract cmd = "tesseract " + zhongwen_url + " " + fn + " -l chi_sim" os.system(cmd) with open(fn+".txt", "r") as f: print f ret=os.system('cat /etc/pam.conf') print ret print '----------------------' ret=os.popen('cat /etc/pam.conf') print ret''' r''''' import os import subprocess def image_to_string(img, cleanup=True, plus=''): # cleanup为True则识别完成后删除生成的文本文件 # plus参数为给tesseract的附加高级参数 subprocess.check_output('tesseract ' + img + ' ' + img + ' ' + plus, shell=True) # 生成同名txt文件 text = '' with open(img + '.txt', 'r') as f: text = f.read().strip() if cleanup: os.remove(img + '.txt') return text # run >>> # print(image_to_string('./phototest.tif')) # 打印识别出的文本,删除txt文件 # print(image_to_string('./phototest.tif', False)) # 打印识别出的文本,不删除txt文件 # print(image_to_string('./phototest.tif', False, '-l eng')) # 打印识别出的文本,不删除txt文件,同时提供高级参数 # PyTesser废弃... ''' 您可能感兴趣的文章:基于MATLAB神经网络图像识别的高识别率代码如何制作一个Node命令行图像识别工具python自动截取需要区域,进行图像识别的方法Node Puppeteer图像识别实现百度指数爬虫的示例iOS通过摄像头图像识别技术分享python实现识别手写数字 python图像识别算法用Python进行简单图像识别(验证码)C#图像识别 微信跳一跳机器人微信跳一跳python辅助软件思路及图像识别源码解析PHP图像识别技术原理与实现JAVA演示阿里云图像识别API,印刷文字识别-营业执照识别



图像识别 Python

需要 登录 后方可回复, 如果你还没有账号请 注册新账号