百度ai图像识别
Posted znsongshu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了百度ai图像识别相关的知识,希望对你有一定的参考价值。
require ‘restclient‘
require ‘open-uri‘
require ‘nokogiri‘
require ‘json‘
require ‘yaml‘
require ‘fileutils‘
require ‘base64‘
def extract_phone(image_src)
url = "https://aip.baidubce.com/rest/2.0/ocr/v1/general_basic"
access_token = "24.0bbbc3338fcf9df41f26b42ff2a077.2593200.15323228.282335-11449805"
content_type = "application/x-www-form-urlencoded"
file = open(image_src).read
image = Base64.encode64(file)
RestClient.post(url, {access_token: access_token, image: image}, {content_type: content_type}) do |response|
body = JSON.parse(response.body)
return raise unless body[‘error_code‘].nil?
return body["words_result"][0]["words"]
end
end
以上是关于百度ai图像识别的主要内容,如果未能解决你的问题,请参考以下文章
使用百度AI平台图像识别-人脸动漫化与黑白图片上色(PHP)