溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

如何在python中使用百度云接口對(duì)車牌進(jìn)行識(shí)別

發(fā)布時(shí)間:2021-03-09 16:41:18 來(lái)源:億速云 閱讀:200 作者:Leah 欄目:開(kāi)發(fā)技術(shù)

如何在python中使用百度云接口對(duì)車牌進(jìn)行識(shí)別?針對(duì)這個(gè)問(wèn)題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問(wèn)題的小伙伴找到更簡(jiǎn)單易行的方法。

1. 安裝python環(huán)境

如何在python中使用百度云接口對(duì)車牌進(jìn)行識(shí)別

打開(kāi)安裝包無(wú)腦安裝即可。安裝好之后,看一下是否安裝成功。

cmd

python --version

如何在python中使用百度云接口對(duì)車牌進(jìn)行識(shí)別

2. 百度云SDK下載安裝及創(chuàng)建應(yīng)用

參考https://cloud.baidu.com/doc/OCR/s/pjwvxzmtc文檔,安裝python SDK

查看pip版本(python環(huán)境自帶,但是要注意版本)

pip --version

如何在python中使用百度云接口對(duì)車牌進(jìn)行識(shí)別

如果版本不合適,那么自行升級(jí)pip

pip install -U pip

安裝baidu-aip

pip install baidu-aip

如何在python中使用百度云接口對(duì)車牌進(jìn)行識(shí)別(安裝成功的樣子)

現(xiàn)在我們的百度云SDK就安裝好了,下來(lái)創(chuàng)建應(yīng)用

登錄百度云(沒(méi)賬號(hào)注冊(cè)一下)

如何在python中使用百度云接口對(duì)車牌進(jìn)行識(shí)別

創(chuàng)建應(yīng)用

如何在python中使用百度云接口對(duì)車牌進(jìn)行識(shí)別

自己填一下

如何在python中使用百度云接口對(duì)車牌進(jìn)行識(shí)別

現(xiàn)在我們就創(chuàng)建好了車牌識(shí)別的應(yīng)用,點(diǎn)擊應(yīng)用列表可查看。

如何在python中使用百度云接口對(duì)車牌進(jìn)行識(shí)別

這里的APPID、API KEY、Secret Key要在代碼中使用。(注意不要泄漏)

3. 編碼調(diào)接口,實(shí)現(xiàn)需求

python代碼實(shí)現(xiàn)

'''
Statement
1. using the file
2. prepare a image path and call func "get_license_plate(filePath)"
3. you can get a json object
4. get the info from the pbject
example : 
{
  "log_id": 3583925545,
  "words_result": {
    "color": "blue",
    "number": "蘇HS7766"
  }
}
'''

from aip import AipOcr
import json

"""get img"""
def get_file_content(filePath):
  with open(filePath, 'rb') as fp:
    return fp.read()

""" get licsense plate """
def get_license_plate(filePath):
  """ APPID AK SK """
  APP_ID = '********'
  API_KEY = '**************'
  SECRET_KEY = '******************'

  """ create client """
  client = AipOcr(APP_ID, API_KEY, SECRET_KEY)

  image = get_file_content(filePath)

  """ 調(diào)用車牌識(shí)別 """
  res = client.licensePlate(image)
  return res


""" call example """
str = 'C:\\Users\\***\\Desktop\\big.jpg' """ 照片絕對(duì)地址 """
res = get_license_plate(str)
print('車牌號(hào)碼:' + res['words_result']['number'])
print('車牌顏色:' + res['words_result']['color'])

代碼分解

引入庫(kù)

from aip import AipOcr """百度云SDK"""
import json """json庫(kù)"""

創(chuàng)建客戶端

""" APPID AK SK 自己創(chuàng)建的應(yīng)用中的數(shù)據(jù)"""
APP_ID = '*******'
API_KEY = '***************'
SECRET_KEY = '******************'

""" create client """
client = AipOcr(APP_ID, API_KEY, SECRET_KEY)

調(diào)用接口得到車牌識(shí)別結(jié)果

image = get_file_content(filePath)

""" 調(diào)用車牌識(shí)別 """
res = client.licensePlate(image)

這里的res是一個(gè)json對(duì)象/一個(gè)dict

例子

{
  "log_id": 3583925545,
  "words_result": {
    "color": "blue",
    "number": "蘇HS7766"
  }
}

可以使用res['listname']['listname']形式獲取字典數(shù)據(jù)

print('車牌號(hào)碼:' + res['words_result']['number'])
print('車牌顏色:' + res['words_result']['color'])

關(guān)于如何在python中使用百度云接口對(duì)車牌進(jìn)行識(shí)別問(wèn)題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒(méi)有解開(kāi),可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識(shí)。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI