OCR文字识别

可用路由表

名称

路由

必选参数

通用

general

image

身份证

idcard

image,card_type

行驶证驾驶证

driverlicense

image,type

营业执照

bizlicense

image

银行卡

creditcard

image

手写体

handwriting

image

车牌

plate

image

名片

bc

image

通用OCR识别

$path = 'path/to/some.jpg';

$res = $ai->ocr()->path($path)->general();

if($res->success()){
    var_dump($res->toArray());
}else{
    var_dump($res-->getErrMsg());
}

身份证识别

行驶证 驾驶证 识别

营业执照识别

银行卡

手写体

车牌

名片

Last updated

Was this helpful?