【上手】百度AI教你快速搞定車牌識別

一.平臺接入:

1.打開https://ai.baidu.com/

進入控制臺,選擇文字識別服務。

2.創(chuàng)建應用,如圖示:

【上手】百度AI教你快速搞定車牌識別

3.輸入應用名稱、描述,并選擇應用類型,之后點擊立即創(chuàng)建按鈕。

【上手】百度AI教你快速搞定車牌識別

4.創(chuàng)建完畢,點擊返回應用列表。

【上手】百度AI教你快速搞定車牌識別

5.此處顯示AK,SK,后面程序中會用到

【上手】百度AI教你快速搞定車牌識別

二.查看接口文檔

1.打開https://ai.baidu.com/docs#/OCR-API/top

需要用到的信息有:

(1)請求URL: https://aip.baidubce.com/rest/2.0/ocr/v1/license_plate

(2)Header格式:Content-Type:application/x-www-form-urlencoded

(3)請求參數(shù):image和multi_detect兩個參數(shù),image為圖像數(shù)據(jù),base64編碼后進行urlencode,要求base64編碼和urlencode后大小不超過4M。multi_detect是否檢測多張車牌,默認為false,當置為true的時候可以對一張圖片內(nèi)的多張車牌進行識別。

(4)返回參數(shù):車牌顏色Color、車牌號碼number等。

2.獲取access_token

#-*-coding:utf-8-*-#!/usr/bin/envpythonimporturllibimporturllib.parseimporturllib.requestimportbase64importjson#client_id為官網(wǎng)獲取的AK,client_secret為官網(wǎng)獲取的SKclient_id=【百度云應用的AK】client_secret=【百度云應用的SK】#獲取tokendefget_token():host='https://aip.baidubce.com/oauth/2.0/token?grant_type=client_credentials&client_id='+client_id+'&client_secret='+client_secretrequest=urllib.request.Request(host)request.add_header('Content-Type','application/json;charset=UTF-8')response=urllib.request.urlopen(request)token_content=response.read()iftoken_content:token_info=json.loads(token_content.decode("utf-8"))token_key=token_info['access_token']returntoken_key

3.準備一張用于識別的圖片,存儲在本地

【上手】百度AI教你快速搞定車牌識別

.識別結(jié)果

【上手】百度AI教你快速搞定車牌識別

.源碼共享

#-*-coding:utf-8-*-#!/usr/bin/envpythonimporturllibimporturllib.parseimporturllib.requestimportbase64importjson#client_id為官網(wǎng)獲取的AK,client_secret為官網(wǎng)獲取的SKclient_id='*******'client_secret='**************'#獲取tokendefget_token():host='https://aip.baidubce.com/oauth/2.0/token?grant_type=client_credentials&client_id='+client_id+'&client_secret='+client_secretrequest=urllib.request.Request(host)request.add_header('Content-Type','application/json;charset=UTF-8')response=urllib.request.urlopen(request)token_content=response.read()iftoken_content:token_info=json.loads(token_content.decode("utf-8"))token_key=token_info['access_token']returntoken_key#讀取圖片defget_file_content(filePath):withopen(filePath,'rb')asfp:returnfp.read()#獲取車牌號信息defget_license_plate(path):request_url="https://aip.baidubce.com/rest/2.0/ocr/v1/license_plate"f=get_file_content(path)access_token=get_token()img=base64.b64encode(f)params={"custom_lib":False,"image":img}params=urllib.parse.urlencode(params).encode('utf-8')request_urlrequest_url=request_url+"?access_token="+access_tokenrequest=urllib.request.Request(url=request_url,data=params)request.add_header('Content-Type','application/x-www-form-urlencoded')response=urllib.request.urlopen(request)content=response.read()ifcontent:license_plates=json.loads(content.decode("utf-8"))strover='識別結(jié)果:'words_result=license_plates['words_result']number=words_result['number']strover+='車牌號:{}\n'.format(number)#print(content)print(strover)returncontentelse:return''image_path='F:\paddle\chepai.jpg'get_license_plate(image_path)

作者:wangwei8638

極客網(wǎng)企業(yè)會員

免責聲明:本網(wǎng)站內(nèi)容主要來自原創(chuàng)、合作伙伴供稿和第三方自媒體作者投稿,凡在本網(wǎng)站出現(xiàn)的信息,均僅供參考。本網(wǎng)站將盡力確保所提供信息的準確性及可靠性,但不保證有關資料的準確性及可靠性,讀者在使用前請進一步核實,并對任何自主決定的行為負責。本網(wǎng)站對有關資料所引致的錯誤、不確或遺漏,概不負任何法律責任。任何單位或個人認為本網(wǎng)站中的網(wǎng)頁或鏈接內(nèi)容可能涉嫌侵犯其知識產(chǎn)權(quán)或存在不實內(nèi)容時,應及時向本網(wǎng)站提出書面權(quán)利通知或不實情況說明,并提供身份證明、權(quán)屬證明及詳細侵權(quán)或不實情況證明。本網(wǎng)站在收到上述法律文件后,將會依法盡快聯(lián)系相關文章源頭核實,溝通刪除相關內(nèi)容或斷開相關鏈接。

2019-07-16
【上手】百度AI教你快速搞定車牌識別
一.平臺接入:1.打開https://ai.baidu.com/進入控制臺,選擇文字識別服務。

長按掃碼 閱讀全文