百度AI介面OCR識別

2022-07-20 01:24:11 字數 2089 閱讀 3727

!!!要有賬號,這個是要花錢的!!!

通過前端傳來的 的路徑,,返回出卡號和銀行名稱

先通過這個類獲得 token

/*** 獲取api訪問token

* 該token有一定的有效期,需要自行管理,當失效時需重新獲取.

* @param

* @param

* @return

assess_token 示例:

* "24.460da4889caad24cccdb1fea17221975.2592000.1491995545.282335-1234567"

*/public

static

string getauth(string ak, string sk)

//定義 bufferedreader輸入流來讀取url的響應

bufferedreader in = new bufferedreader(new

inputstreamreader(connection.getinputstream()));

string result = "";

string line;

while ((line = in.readline()) != null

)

/*** 返回結果示例

*/system.err.println("result:" +result);

jsonobject jsonobject = new

jsonobject(result);

string access_token = jsonobject.getstring("access_token");

return

access_token;

} catch

(exception e)

return

null

; }

}

下面方法是識別銀行卡的:

/**

* 銀行卡識別

*/public

class

bankcard

catch

(exception e)

return

null

; }

public

static

void

main(string args)

}

可以對這個類進行拆分

/**

* 銀行卡識別

*/@component

public

class

bankcard

catch

(exception e)

return

null

; }

public

string ocrbase64(string ocrbase64)

catch

(unsupportedencodingexception e)

string param = "image=" +imgparam;

//注意這裡僅為了簡化編碼每一次請求都去獲取access_token,線上環境access_token有過期時間, 客戶端可自行快取,過期後重新獲取。

百度OCR識別初體驗

將sdk放入要載入專案的根目錄 2.在專案根目錄下執行npm install sdk檔名 3.具體引用方法檢視sdk中的package.json中的配置 專案目錄結構 idcard.png 身份證 新建aipocrclient ocrclient是optical character recognit...

百度AI的OCR通用文字識別呼叫改成鏈結訪問

問題是我肯定是有許可權的,只好換成鏈結直接訪問的形式 posturl url 你的apikey client secret 你的secretkey urlcontent file get contents url urlcontent json decode urlcontent,true acce...

百度AI文字識別 python筆記

coding utf 8 import urllib,urllib2,base64 access token 呼叫鑑權介面獲取的token url access token 二進位制方式開啟 件 f open r 本地檔案 rb 引數image 影象base64編碼 img base64.b64en...