PHP+百度AI OCR文字识别实现了图片的文字识别功能
程序员文章站
2022-05-25 21:55:10
第一步可定要获取百度的三个东西 要到百度ai网站(http://ai.baidu.com/)去注册 然后获得
-const app_id = '请填写...
第一步可定要获取百度的三个东西 要到百度ai网站(http://ai.baidu.com/)去注册 然后获得
-const app_id = '请填写你的appid'; -const api_key = '请填写你的api_key'; -const secret_key = '请填写你的secret_key';
第二步下载sdk
https://github.com/jankinsun/new/tree/master/ocr/character_recognition
或者使用官方的 http://ai.baidu.com/sdk 下载
第三步 然后就直接运行demo 的文件 demoaipocr.php
里面的图片都可以
我这里自己试了一下
返回的数据是
转json后
{ "log_id": 3394339616, "words_result_num": 3, "classify_result": { "lottery": "unknown" }, "words_result": [ { "words": "友谊" }, { "words": "以相同的价值观选择朋友," }, { "words": "无论对方富有或贫穷。" } ] }
感觉还是不错的
如果报错了 : fatal error: call to undefined function getimagesizefromstring()
因为程序运行的过程中会调用getimagesizefromstring 函数 — get the size of an image from a string 把图像转化成字符 所以要求php版本(php 5 >= 5.4.0, php 7)
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。