Google Vision OCR
程序员文章站
2022-03-10 12:42:18
google 图片识别使用的一些坑和建议,Google OCR 使用 ......
google vision ocr 爬坑建议
首先安装 google vision shell composer require google/cloud-vision
第一次使用的时候真的遇到的问题很多,文档是英文的,自己慢慢摸索的途中不免进行去百度
和google
搜索 但是搜索出来的结果却不尽人意,可能是搜索方式不太对哈哈~,其实使用蛮简单,因为是别人现成对*,只不过使用对时候坑比较多, 所以特别列出以下几点。 1. 身份认证(就这个身份认证我搞了2个小时) 2. $vision->image($img_path)
图片如果传入url的话会抛出异常
身份认证
进入 https://console.cloud.google.com/ 在列表里面找到api与服务选择凭据,创建凭据,选择服务帐号与密钥进行创建,我选择的格式是json 这个就是我们需要的凭据,导出以后放进项目
php require 'vendor/autoload.php'; use google\cloud\vision\visionclient; $vision = new visionclient( [ 'keyfile' => jsondecode(filegetcontents($keypath), true) ] );
到这里身份认证就没有问题了,还有其他的方式,可自行研究,文档太高深,说实话不太喜欢阅读。
图片导入以及function
选择
在google官方提供的文档当中是这样写的demo
require 'vendor/autoload.php'; use google\cloud\vision\visionclient; $vision = new visionclient(); // annotate an image, detecting faces. $image = $vision->image( fopen('/data/family_photo.jpg', 'r'), ['faces'] ); $annotation = $vision->annotate($image); // determine if the detected faces have headwear. foreach ($annotation->faces() as $key => $face) { if ($face->hasheadwear()) { echo "face $key has headwear.\n"; } }
['faces']features方法是可以多传的,更具需求传入,在最后我列出了所有的features。
这里还存在一个问题,我的图片是url,我尝试使用
fopen和
filegetcontents`打开一个url,但是被抛出了异常(异常没深究,太高端看不懂,咱也不敢问), 最后是这样成功的,并成功拿到了返回。
[ 'faces', // corresponds to `face_detection` 'landmarks', // corresponds to `landmark_detection` 'logos', // corresponds to `logo_detection` 'labels', // corresponds to `label_detection` 'text', // corresponds to `text_detection`, 'document', // corresponds to `document_text_detection` 'safesearch', // corresponds to `safe_search_detection` 'imageproperties',// corresponds to `image_properties` 'crop', // corresponds to `crop_hints` 'web' // corresponds to `web_detection` ]
features
[ 'faces', // corresponds to `face_detection` 'landmarks', // corresponds to `landmark_detection` 'logos', // corresponds to `logo_detection` 'labels', // corresponds to `label_detection` 'text', // corresponds to `text_detection`, 'document', // corresponds to `document_text_detection` 'safesearch', // corresponds to `safe_search_detection` 'imageproperties',// corresponds to `image_properties` 'crop', // corresponds to `crop_hints` 'web' // corresponds to `web_detection` ]
以上初次使用的坑,见识略薄(也可能是我的理解和使用方式不对),也希望你们在使用的过程中能有所帮助!
推荐阅读
-
php调用google接口生成二维码示例_PHP
-
Google Suggest ;-) 基于js的动态下拉菜单_javascript技巧
-
记一次 Google 面试经历
-
代码面试集锦 2 - Google
-
Google翻译接口(PHP API)
-
PHP Google的translate API代码_PHP
-
google提供二维码生成器
-
对象上下文语义分割:OCR论文笔记(Object-Contextual Representations for Semantic Segmentation )
-
Google Js二维码Api和PHP条形码生成
-
google file system 用PHP获取Google AJAX Search API 数据的代码