12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346 |
- <?php
- /*
- * Copyright (c) 2017 Baidu.com, Inc. All Rights Reserved
- *
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not
- * use this file except in compliance with the License. You may obtain a copy of
- * the License at
- *
- * Http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
- * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
- * License for the specific language governing permissions and limitations under
- * the License.
- */
- require_once 'lib/AipBase.php';
- class AipOcr extends AipBase
- {
- /**
- * 通用文字识别 general_basic api url
- * @var string
- */
- private $generalBasicUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/general_basic';
- /**
- * 通用文字识别(高精度版) accurate_basic api url
- * @var string
- */
- private $accurateBasicUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/accurate_basic';
- /**
- * 通用文字识别(含位置信息版) general api url
- * @var string
- */
- private $generalUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/general';
- /**
- * 通用文字识别(含位置高精度版) accurate api url
- * @var string
- */
- private $accurateUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/accurate';
- /**
- * 通用文字识别(含生僻字版) general_enhanced api url
- * @var string
- */
- private $generalEnhancedUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/general_enhanced';
- /**
- * 网络图片文字识别 web_image api url
- * @var string
- */
- private $webImageUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/webimage';
- /**
- * 身份证识别 idcard api url
- * @var string
- */
- private $idcardUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/idcard';
- /**
- * 银行卡识别 bankcard api url
- * @var string
- */
- private $bankcardUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/bankcard';
- /**
- * 驾驶证识别 driving_license api url
- * @var string
- */
- private $drivingLicenseUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/driving_license';
- /**
- * 行驶证识别 vehicle_license api url
- * @var string
- */
- private $vehicleLicenseUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/vehicle_license';
- /**
- * 车牌识别 license_plate api url
- * @var string
- */
- private $licensePlateUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/license_plate';
- /**
- * 营业执照识别 business_license api url
- * @var string
- */
- private $businessLicenseUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/business_license';
- /**
- * 通用票据识别 receipt api url
- * @var string
- */
- private $receiptUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/receipt';
- /**
- * 火车票识别 train_ticket api url
- * @var string
- */
- private $trainTicketUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/train_ticket';
- /**
- * 出租车票识别 taxi_receipt api url
- * @var string
- */
- private $taxiReceiptUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/taxi_receipt';
- /**
- * 表格文字识别同步接口 form api url
- * @var string
- */
- private $formUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/form';
- /**
- * 表格文字识别 table_recognize api url
- * @var string
- */
- private $tableRecognizeUrl = 'https://aip.baidubce.com/rest/2.0/solution/v1/form_ocr/request';
- /**
- * 表格识别结果 table_result_get api url
- * @var string
- */
- private $tableResultGetUrl = 'https://aip.baidubce.com/rest/2.0/solution/v1/form_ocr/get_request_result';
- /**
- * VIN码识别 vin_code api url
- * @var string
- */
- private $vinCodeUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/vin_code';
- /**
- * 定额发票识别 quota_invoice api url
- * @var string
- */
- private $quotaInvoiceUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/quota_invoice';
- /**
- * 户口本识别 household_register api url
- * @var string
- */
- private $householdRegisterUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/household_register';
- /**
- * 港澳通行证识别 HK_Macau_exitentrypermit api url
- * @var string
- */
- private $HKMacauExitentrypermitUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/HK_Macau_exitentrypermit';
- /**
- * 台湾通行证识别 taiwan_exitentrypermit api url
- * @var string
- */
- private $taiwanExitentrypermitUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/taiwan_exitentrypermit';
- /**
- * 出生医学证明识别 birth_certificate api url
- * @var string
- */
- private $birthCertificateUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/birth_certificate';
- /**
- * 机动车销售发票识别 vehicle_invoice api url
- * @var string
- */
- private $vehicleInvoiceUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/vehicle_invoice';
- /**
- * 车辆合格证识别 vehicle_certificate api url
- * @var string
- */
- private $vehicleCertificateUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/vehicle_certificate';
- /**
- * 税务局通用机打发票识别 invoice api url
- * @var string
- */
- private $invoiceUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/invoice';
- /**
- * 行程单识别 air_ticket api url
- * @var string
- */
- private $airTicketUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/air_ticket';
- /**
- * 保单识别 insurance_documents api url
- * @var string
- */
- private $insuranceDocumentsUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/insurance_documents';
- /**
- * 增值税发票识别 vat_invoice api url
- * @var string
- */
- private $vatInvoiceUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/vat_invoice';
- /**
- * 二维码识别 qrcode api url
- * @var string
- */
- private $qrcodeUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/qrcode';
- /**
- * 数字识别 numbers api url
- * @var string
- */
- private $numbersUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/numbers';
- /**
- * 彩票识别 lottery api url
- * @var string
- */
- private $lotteryUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/lottery';
- /**
- * 护照识别 passport api url
- * @var string
- */
- private $passportUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/passport';
- /**
- * 名片识别 business_card api url
- * @var string
- */
- private $businessCardUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/business_card';
- /**
- * 手写文字识别 handwriting api url
- * @var string
- */
- private $handwritingUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/handwriting';
- /**
- * 自定义模板文字识别 custom api url
- * @var string
- */
- private $customUrl = 'https://aip.baidubce.com/rest/2.0/solution/v1/iocr/recognise';
- /**
- * 文档版面分析与识别
- * @var string
- */
- private $docAnalysis = "https://aip.baidubce.com/rest/2.0/ocr/v1/doc_analysis";
- /**
- * 仪器仪表盘读数识别
- * @var string
- */
- private $meter = "https://aip.baidubce.com/rest/2.0/ocr/v1/meter";
- /**
- * 网络图片文字识别(含位置版)
- * @var string
- */
- private $webimageLoc = "https://aip.baidubce.com/rest/2.0/ocr/v1/webimage_loc";
- /**
- * 通用文字识别接口
- *
- * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * language_type 识别语言类型,默认为CHN_ENG。可选值包括:<br>- CHN_ENG:中英文混合;<br>- ENG:英文;<br>- POR:葡萄牙语;<br>- FRE:法语;<br>- GER:德语;<br>- ITA:意大利语;<br>- SPA:西班牙语;<br>- RUS:俄语;<br>- JAP:日语;<br>- KOR:韩语;
- * detect_direction 是否检测图像朝向,默认不检测,即:false。朝向是指输入图像是正常方向、逆时针旋转90/180/270度。可选值包括:<br>- true:检测朝向;<br>- false:不检测朝向。
- * detect_language 是否检测语言,默认不检测。当前支持(中文、英语、日语、韩语)
- * probability 是否返回识别结果中每一行的置信度
- * @return array
- */
- public function basicGeneral($image, $options = array())
- {
- $data = array();
- $data['image'] = base64_encode($image);
- $data = array_merge($data, $options);
- return $this->request($this->generalBasicUrl, $data);
- }
- /**
- * 通用文字识别接口
- *
- * @param string $url - 图片完整URL,URL长度不超过1024字节,URL对应的图片base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式,当image字段存在时url字段失效
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * language_type 识别语言类型,默认为CHN_ENG。可选值包括:<br>- CHN_ENG:中英文混合;<br>- ENG:英文;<br>- POR:葡萄牙语;<br>- FRE:法语;<br>- GER:德语;<br>- ITA:意大利语;<br>- SPA:西班牙语;<br>- RUS:俄语;<br>- JAP:日语;<br>- KOR:韩语;
- * detect_direction 是否检测图像朝向,默认不检测,即:false。朝向是指输入图像是正常方向、逆时针旋转90/180/270度。可选值包括:<br>- true:检测朝向;<br>- false:不检测朝向。
- * detect_language 是否检测语言,默认不检测。当前支持(中文、英语、日语、韩语)
- * probability 是否返回识别结果中每一行的置信度
- * @return array
- */
- public function basicGeneralUrl($url, $options = array())
- {
- $data = array();
- $data['url'] = $url;
- $data = array_merge($data, $options);
- return $this->request($this->generalBasicUrl, $data);
- }
- /**
- * 通用文字识别(高精度版)接口
- *
- * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * detect_direction 是否检测图像朝向,默认不检测,即:false。朝向是指输入图像是正常方向、逆时针旋转90/180/270度。可选值包括:<br>- true:检测朝向;<br>- false:不检测朝向。
- * probability 是否返回识别结果中每一行的置信度
- * @return array
- */
- public function basicAccurate($image, $options = array())
- {
- $data = array();
- $data['image'] = base64_encode($image);
- $data = array_merge($data, $options);
- return $this->request($this->accurateBasicUrl, $data);
- }
- /**
- * 通用文字识别(含位置信息版)接口
- *
- * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * recognize_granularity 是否定位单字符位置,big:不定位单字符位置,默认值;small:定位单字符位置
- * language_type 识别语言类型,默认为CHN_ENG。可选值包括:<br>- CHN_ENG:中英文混合;<br>- ENG:英文;<br>- POR:葡萄牙语;<br>- FRE:法语;<br>- GER:德语;<br>- ITA:意大利语;<br>- SPA:西班牙语;<br>- RUS:俄语;<br>- JAP:日语;<br>- KOR:韩语;
- * detect_direction 是否检测图像朝向,默认不检测,即:false。朝向是指输入图像是正常方向、逆时针旋转90/180/270度。可选值包括:<br>- true:检测朝向;<br>- false:不检测朝向。
- * detect_language 是否检测语言,默认不检测。当前支持(中文、英语、日语、韩语)
- * vertexes_location 是否返回文字外接多边形顶点位置,不支持单字位置。默认为false
- * probability 是否返回识别结果中每一行的置信度
- * @return array
- */
- public function general($image, $options = array())
- {
- $data = array();
- $data['image'] = base64_encode($image);
- $data = array_merge($data, $options);
- return $this->request($this->generalUrl, $data);
- }
- /**
- * 通用文字识别(含位置信息版)接口
- *
- * @param string $url - 图片完整URL,URL长度不超过1024字节,URL对应的图片base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式,当image字段存在时url字段失效
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * recognize_granularity 是否定位单字符位置,big:不定位单字符位置,默认值;small:定位单字符位置
- * language_type 识别语言类型,默认为CHN_ENG。可选值包括:<br>- CHN_ENG:中英文混合;<br>- ENG:英文;<br>- POR:葡萄牙语;<br>- FRE:法语;<br>- GER:德语;<br>- ITA:意大利语;<br>- SPA:西班牙语;<br>- RUS:俄语;<br>- JAP:日语;<br>- KOR:韩语;
- * detect_direction 是否检测图像朝向,默认不检测,即:false。朝向是指输入图像是正常方向、逆时针旋转90/180/270度。可选值包括:<br>- true:检测朝向;<br>- false:不检测朝向。
- * detect_language 是否检测语言,默认不检测。当前支持(中文、英语、日语、韩语)
- * vertexes_location 是否返回文字外接多边形顶点位置,不支持单字位置。默认为false
- * probability 是否返回识别结果中每一行的置信度
- * @return array
- */
- public function generalUrl($url, $options = array())
- {
- $data = array();
- $data['url'] = $url;
- $data = array_merge($data, $options);
- return $this->request($this->generalUrl, $data);
- }
- /**
- * 通用文字识别(含位置高精度版)接口
- *
- * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * recognize_granularity 是否定位单字符位置,big:不定位单字符位置,默认值;small:定位单字符位置
- * detect_direction 是否检测图像朝向,默认不检测,即:false。朝向是指输入图像是正常方向、逆时针旋转90/180/270度。可选值包括:<br>- true:检测朝向;<br>- false:不检测朝向。
- * vertexes_location 是否返回文字外接多边形顶点位置,不支持单字位置。默认为false
- * probability 是否返回识别结果中每一行的置信度
- * @return array
- */
- public function accurate($image, $options = array())
- {
- $data = array();
- $data['image'] = base64_encode($image);
- $data = array_merge($data, $options);
- return $this->request($this->accurateUrl, $data);
- }
- /**
- * 通用文字识别(含生僻字版)接口
- *
- * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * language_type 识别语言类型,默认为CHN_ENG。可选值包括:<br>- CHN_ENG:中英文混合;<br>- ENG:英文;<br>- POR:葡萄牙语;<br>- FRE:法语;<br>- GER:德语;<br>- ITA:意大利语;<br>- SPA:西班牙语;<br>- RUS:俄语;<br>- JAP:日语;<br>- KOR:韩语;
- * detect_direction 是否检测图像朝向,默认不检测,即:false。朝向是指输入图像是正常方向、逆时针旋转90/180/270度。可选值包括:<br>- true:检测朝向;<br>- false:不检测朝向。
- * detect_language 是否检测语言,默认不检测。当前支持(中文、英语、日语、韩语)
- * probability 是否返回识别结果中每一行的置信度
- * @return array
- */
- public function enhancedGeneral($image, $options = array())
- {
- $data = array();
- $data['image'] = base64_encode($image);
- $data = array_merge($data, $options);
- return $this->request($this->generalEnhancedUrl, $data);
- }
- /**
- * 通用文字识别(含生僻字版)接口
- *
- * @param string $url - 图片完整URL,URL长度不超过1024字节,URL对应的图片base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式,当image字段存在时url字段失效
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * language_type 识别语言类型,默认为CHN_ENG。可选值包括:<br>- CHN_ENG:中英文混合;<br>- ENG:英文;<br>- POR:葡萄牙语;<br>- FRE:法语;<br>- GER:德语;<br>- ITA:意大利语;<br>- SPA:西班牙语;<br>- RUS:俄语;<br>- JAP:日语;<br>- KOR:韩语;
- * detect_direction 是否检测图像朝向,默认不检测,即:false。朝向是指输入图像是正常方向、逆时针旋转90/180/270度。可选值包括:<br>- true:检测朝向;<br>- false:不检测朝向。
- * detect_language 是否检测语言,默认不检测。当前支持(中文、英语、日语、韩语)
- * probability 是否返回识别结果中每一行的置信度
- * @return array
- */
- public function enhancedGeneralUrl($url, $options = array())
- {
- $data = array();
- $data['url'] = $url;
- $data = array_merge($data, $options);
- return $this->request($this->generalEnhancedUrl, $data);
- }
- /**
- * 网络图片文字识别接口
- *
- * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * detect_direction 是否检测图像朝向,默认不检测,即:false。朝向是指输入图像是正常方向、逆时针旋转90/180/270度。可选值包括:<br>- true:检测朝向;<br>- false:不检测朝向。
- * detect_language 是否检测语言,默认不检测。当前支持(中文、英语、日语、韩语)
- * @return array
- */
- public function webImage($image, $options = array())
- {
- $data = array();
- $data['image'] = base64_encode($image);
- $data = array_merge($data, $options);
- return $this->request($this->webImageUrl, $data);
- }
- /**
- * 网络图片文字识别接口
- *
- * @param string $url - 图片完整URL,URL长度不超过1024字节,URL对应的图片base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式,当image字段存在时url字段失效
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * detect_direction 是否检测图像朝向,默认不检测,即:false。朝向是指输入图像是正常方向、逆时针旋转90/180/270度。可选值包括:<br>- true:检测朝向;<br>- false:不检测朝向。
- * detect_language 是否检测语言,默认不检测。当前支持(中文、英语、日语、韩语)
- * @return array
- */
- public function webImageUrl($url, $options = array())
- {
- $data = array();
- $data['url'] = $url;
- $data = array_merge($data, $options);
- return $this->request($this->webImageUrl, $data);
- }
- /**
- * 身份证识别接口
- *
- * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
- * @param string $idCardSide - front:身份证含照片的一面;back:身份证带国徽的一面
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * detect_direction 是否检测图像朝向,默认不检测,即:false。朝向是指输入图像是正常方向、逆时针旋转90/180/270度。可选值包括:<br>- true:检测朝向;<br>- false:不检测朝向。
- * detect_risk 是否开启身份证风险类型(身份证复印件、临时身份证、身份证翻拍、修改过的身份证)功能,默认不开启,即:false。可选值:true-开启;false-不开启
- * @return array
- */
- public function idcard($image, $idCardSide, $options = array())
- {
- $data = array();
- $data['image'] = base64_encode($image);
- $data['id_card_side'] = $idCardSide;
- $data = array_merge($data, $options);
- return $this->request($this->idcardUrl, $data);
- }
- /**
- * 银行卡识别接口
- *
- * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * @return array
- */
- public function bankcard($image, $options = array())
- {
- $data = array();
- $data['image'] = base64_encode($image);
- $data = array_merge($data, $options);
- return $this->request($this->bankcardUrl, $data);
- }
- /**
- * 驾驶证识别接口
- *
- * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * detect_direction 是否检测图像朝向,默认不检测,即:false。朝向是指输入图像是正常方向、逆时针旋转90/180/270度。可选值包括:<br>- true:检测朝向;<br>- false:不检测朝向。
- * @return array
- */
- public function drivingLicense($image, $options = array())
- {
- $data = array();
- $data['image'] = base64_encode($image);
- $data = array_merge($data, $options);
- return $this->request($this->drivingLicenseUrl, $data);
- }
- /**
- * 行驶证识别接口
- *
- * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * detect_direction 是否检测图像朝向,默认不检测,即:false。朝向是指输入图像是正常方向、逆时针旋转90/180/270度。可选值包括:<br>- true:检测朝向;<br>- false:不检测朝向。
- * accuracy normal 使用快速服务,1200ms左右时延;缺省或其它值使用高精度服务,1600ms左右时延
- * @return array
- */
- public function vehicleLicense($image, $options = array())
- {
- $data = array();
- $data['image'] = base64_encode($image);
- $data = array_merge($data, $options);
- return $this->request($this->vehicleLicenseUrl, $data);
- }
- /**
- * 车牌识别接口
- *
- * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * multi_detect 是否检测多张车牌,默认为false,当置为true的时候可以对一张图片内的多张车牌进行识别
- * @return array
- */
- public function licensePlate($image, $options = array())
- {
- $data = array();
- $data['image'] = base64_encode($image);
- $data = array_merge($data, $options);
- return $this->request($this->licensePlateUrl, $data);
- }
- /**
- * 营业执照识别接口
- *
- * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * @return array
- */
- public function businessLicense($image, $options = array())
- {
- $data = array();
- $data['image'] = base64_encode($image);
- $data = array_merge($data, $options);
- return $this->request($this->businessLicenseUrl, $data);
- }
- /**
- * 通用票据识别接口
- *
- * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * recognize_granularity 是否定位单字符位置,big:不定位单字符位置,默认值;small:定位单字符位置
- * probability 是否返回识别结果中每一行的置信度
- * accuracy normal 使用快速服务,1200ms左右时延;缺省或其它值使用高精度服务,1600ms左右时延
- * detect_direction 是否检测图像朝向,默认不检测,即:false。朝向是指输入图像是正常方向、逆时针旋转90/180/270度。可选值包括:<br>- true:检测朝向;<br>- false:不检测朝向。
- * @return array
- */
- public function receipt($image, $options = array())
- {
- $data = array();
- $data['image'] = base64_encode($image);
- $data = array_merge($data, $options);
- return $this->request($this->receiptUrl, $data);
- }
- /**
- * 火车票识别接口
- *
- * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * @return array
- */
- public function trainTicket($image, $options = array())
- {
- $data = array();
- $data['image'] = base64_encode($image);
- $data = array_merge($data, $options);
- return $this->request($this->trainTicketUrl, $data);
- }
- /**
- * 火车票识别接口
- *
- * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * @return array
- */
- public function trainTicketUrl($image, $options = array())
- {
- $data = array();
- $data['url'] = $image;
- $data = array_merge($data, $options);
- return $this->request($this->trainTicketUrl, $data);
- }
- /**
- * 出租车票识别接口
- *
- * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * @return array
- */
- public function taxiReceipt($image, $options = array())
- {
- $data = array();
- $data['image'] = base64_encode($image);
- $data = array_merge($data, $options);
- return $this->request($this->taxiReceiptUrl, $data);
- }
- /**
- * 出租车票识别接口
- *
- * @param string $url - 图片完整URL,URL长度不超过1024字节,URL对应的图片base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式,当image字段存在时url字段失效
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * @return array
- */
- public function taxiReceiptUrl($image, $options = array())
- {
- $data = array();
- $data['url'] = $image;
- $data = array_merge($data, $options);
- return $this->request($this->taxiReceiptUrl, $data);
- }
- /**
- * 表格文字识别同步接口接口
- *
- * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * @return array
- */
- public function form($image, $options = array())
- {
- $data = array();
- $data['image'] = base64_encode($image);
- $data = array_merge($data, $options);
- return $this->request($this->formUrl, $data);
- }
- /**
- * 表格文字识别接口
- *
- * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * @return array
- */
- public function tableRecognitionAsync($image, $options = array())
- {
- $data = array();
- $data['image'] = base64_encode($image);
- $data = array_merge($data, $options);
- return $this->request($this->tableRecognizeUrl, $data);
- }
- /**
- * 表格识别结果接口
- *
- * @param string $requestId - 发送表格文字识别请求时返回的request id
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * result_type 期望获取结果的类型,取值为“excel”时返回xls文件的地址,取值为“json”时返回json格式的字符串,默认为”excel”
- * @return array
- */
- public function getTableRecognitionResult($requestId, $options = array())
- {
- $data = array();
- $data['request_id'] = $requestId;
- $data = array_merge($data, $options);
- return $this->request($this->tableResultGetUrl, $data);
- }
- /**
- * VIN码识别接口
- *
- * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * @return array
- */
- public function vinCode($image, $options = array())
- {
- $data = array();
- $data['image'] = base64_encode($image);
- $data = array_merge($data, $options);
- return $this->request($this->vinCodeUrl, $data);
- }
- /**
- * VIN码识别接口
- * @param string $url - 图片完整URL,URL长度不超过1024字节,URL对应的图片base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式,当image字段存在时url字段失效
- * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * @return array
- */
- public function vinCodeUrl($image, $options = array())
- {
- $data = array();
- $data['url'] = $image;
- $data = array_merge($data, $options);
- return $this->request($this->vinCodeUrl, $data);
- }
- /**
- * 定额发票识别接口
- *
- * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * @return array
- */
- public function quotaInvoice($image, $options = array())
- {
- $data = array();
- $data['image'] = base64_encode($image);
- $data = array_merge($data, $options);
- return $this->request($this->quotaInvoiceUrl, $data);
- }
- /**
- * 户口本识别接口
- *
- * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * @return array
- */
- public function householdRegister($image, $options = array())
- {
- $data = array();
- $data['image'] = base64_encode($image);
- $data = array_merge($data, $options);
- return $this->request($this->householdRegisterUrl, $data);
- }
- /**
- * 港澳通行证识别接口
- *
- * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * @return array
- */
- public function HKMacauExitentrypermit($image, $options = array())
- {
- $data = array();
- $data['image'] = base64_encode($image);
- $data = array_merge($data, $options);
- return $this->request($this->HKMacauExitentrypermitUrl, $data);
- }
- /**
- * 台湾通行证识别接口
- *
- * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * @return array
- */
- public function taiwanExitentrypermit($image, $options = array())
- {
- $data = array();
- $data['image'] = base64_encode($image);
- $data = array_merge($data, $options);
- return $this->request($this->taiwanExitentrypermitUrl, $data);
- }
- /**
- * 出生医学证明识别接口
- *
- * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * @return array
- */
- public function birthCertificate($image, $options = array())
- {
- $data = array();
- $data['image'] = base64_encode($image);
- $data = array_merge($data, $options);
- return $this->request($this->birthCertificateUrl, $data);
- }
- /**
- * 机动车销售发票识别接口
- *
- * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * @return array
- */
- public function vehicleInvoice($image, $options = array())
- {
- $data = array();
- $data['image'] = base64_encode($image);
- $data = array_merge($data, $options);
- return $this->request($this->vehicleInvoiceUrl, $data);
- }
- /**
- * 车辆合格证识别接口
- *
- * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * @return array
- */
- public function vehicleCertificate($image, $options = array())
- {
- $data = array();
- $data['image'] = base64_encode($image);
- $data = array_merge($data, $options);
- return $this->request($this->vehicleCertificateUrl, $data);
- }
- /**
- * 税务局通用机打发票识别接口
- *
- * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * location 是否输出位置信息,true:输出位置信息,false:不输出位置信息,默认false
- * @return array
- */
- public function invoice($image, $options = array())
- {
- $data = array();
- $data['image'] = base64_encode($image);
- $data = array_merge($data, $options);
- return $this->request($this->invoiceUrl, $data);
- }
- /**
- * 行程单识别接口
- *
- * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * location 是否输出位置信息,true:输出位置信息,false:不输出位置信息,默认false
- * @return array
- */
- public function airTicket($image, $options = array())
- {
- $data = array();
- $data['image'] = base64_encode($image);
- $data = array_merge($data, $options);
- return $this->request($this->airTicketUrl, $data);
- }
- /**
- * 保单识别接口
- *
- * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * rkv_business 是否进行商业逻辑处理,rue:进行商业逻辑处理,false:不进行商业逻辑处理,默认true
- * @return array
- */
- public function insuranceDocuments($image, $options = array())
- {
- $data = array();
- $data['image'] = base64_encode($image);
- $data = array_merge($data, $options);
- return $this->request($this->insuranceDocumentsUrl, $data);
- }
- /**
- * 增值税发票识别接口
- *
- * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * @return array
- */
- public function vatInvoice($image, $options = array())
- {
- $data = array();
- $data['image'] = base64_encode($image);
- $data = array_merge($data, $options);
- return $this->request($this->vatInvoiceUrl, $data);
- }
- /**
- * 增值税发票识别接口
- *
- * @param string $url - 图片完整URL,URL长度不超过1024字节,URL对应的图片base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式,当image字段存在时url字段失效
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * string type 进行识别的增值税发票类型,默认为 normal,可缺省
- * - normal:可识别增值税普票、专票、电子发票
- * - roll:可识别增值税卷票
- * @return array
- */
- public function vatInvoiceUrl($url, $options = array())
- {
- $data = array();
- $data['url'] = $url;
- $data = array_merge($data, $options);
- return $this->request($this->vatInvoiceUrl, $data);
- }
- /**
- * 增值税发票识别接口
- *
- * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表
- * string type 进行识别的增值税发票类型,默认为 normal,可缺省
- * - normal:可识别增值税普票、专票、电子发票
- * - roll:可识别增值税卷票
- * @return array
- */
- public function vatInvoicePdf($pdfFile, $options = array())
- {
- $data = array();
- $data['pdf_file'] = base64_encode($pdfFile);
- $data = array_merge($data, $options);
- return $this->request($this->vatInvoiceUrl, $data);
- }
- /**
- * 二维码识别接口
- *
- * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * @return array
- */
- public function qrcode($image, $options = array())
- {
- $data = array();
- $data['image'] = base64_encode($image);
- $data = array_merge($data, $options);
- return $this->request($this->qrcodeUrl, $data);
- }
- /**
- * 数字识别接口
- *
- * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * recognize_granularity 是否定位单字符位置,big:不定位单字符位置,默认值;small:定位单字符位置
- * detect_direction 是否检测图像朝向,默认不检测,即:false。朝向是指输入图像是正常方向、逆时针旋转90/180/270度。可选值包括:<br>- true:检测朝向;<br>- false:不检测朝向。
- * @return array
- */
- public function numbers($image, $options = array())
- {
- $data = array();
- $data['image'] = base64_encode($image);
- $data = array_merge($data, $options);
- return $this->request($this->numbersUrl, $data);
- }
- /**
- * 彩票识别接口
- *
- * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * recognize_granularity 是否定位单字符位置,big:不定位单字符位置,默认值;small:定位单字符位置
- * @return array
- */
- public function lottery($image, $options = array())
- {
- $data = array();
- $data['image'] = base64_encode($image);
- $data = array_merge($data, $options);
- return $this->request($this->lotteryUrl, $data);
- }
- /**
- * 护照识别接口
- *
- * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * @return array
- */
- public function passport($image, $options = array())
- {
- $data = array();
- $data['image'] = base64_encode($image);
- $data = array_merge($data, $options);
- return $this->request($this->passportUrl, $data);
- }
- /**
- * 名片识别接口
- *
- * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * @return array
- */
- public function businessCard($image, $options = array())
- {
- $data = array();
- $data['image'] = base64_encode($image);
- $data = array_merge($data, $options);
- return $this->request($this->businessCardUrl, $data);
- }
- /**
- * 手写文字识别接口
- *
- * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * recognize_granularity 是否定位单字符位置,big:不定位单字符位置,默认值;small:定位单字符位置
- * @return array
- */
- public function handwriting($image, $options = array())
- {
- $data = array();
- $data['image'] = base64_encode($image);
- $data = array_merge($data, $options);
- return $this->request($this->handwritingUrl, $data);
- }
- /**
- * 自定义模板文字识别接口
- *
- * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
- * @param array $options - 可选参数对象,key: value都为string类型
- * @description options列表:
- * templateSign 您在自定义文字识别平台制作的模板的ID
- * classifierId 分类器Id。这个参数和templateSign至少存在一个,优先使用templateSign。存在templateSign时,表示使用指定模板;如果没有templateSign而有classifierId,表示使用分类器去判断使用哪个模板
- * @return array
- */
- public function custom($image, $options = array())
- {
- $data = array();
- $data['image'] = base64_encode($image);
- $data = array_merge($data, $options);
- return $this->request($this->customUrl, $data);
- }
- /**
- * 同步请求
- * @param string $image 图像读取
- * @param options 接口可选参数
- * @return array
- */
- public function tableRecognition($image, $options = array(), $timeout = 10000)
- {
- $result = $this->tableRecognitionAsync($image);
- if (isset($result['error_code'])) {
- return $result;
- }
- $requestId = $result['result'][0]['request_id'];
- $count = ceil($timeout / 1000);
- for ($i = 0; $i < $count; $i++) {
- $result = $this->getTableRecognitionResult($requestId, $options);
- // 完成
- if ($result['result']['ret_code'] == 3) {
- break;
- }
- sleep(1);
- }
- return $result;
- }
- /**
- * 文档版面分析与识别
- *
- * @param string $image
- * @param string $languageType
- * @param string $resultType
- * @param bool $detectDirection
- * @param bool $lineProbability
- * @param null $wordsType
- * @param null $layoutAnalysis
- * @param array $options
- * @return bool|mix|mixed|string|string[]
- */
- public function docAnalysis($image, $languageType, $resultType, $options = array())
- {
- $data = array();
- $data['image'] = base64_encode($image);
- if ($languageType == null || in_array($languageType, array('CHN_ENG', 'ENG')) <> 1) {
- return "please provide correct param: language_type ";
- }
- $data['language_type'] = $languageType;
- if ($resultType == null || in_array($resultType, array('big', 'small')) <> 1) {
- return "please provide correct param: result_type ";
- }
- $data['result_type'] = $resultType;
- $data = array_merge($data, $options);
- return $this->request($this->docAnalysis, $data);
- }
- /**
- * 仪器仪表盘读数识别
- *
- * @param string $image
- * @param bool $probability
- * @param bool $polyLocation
- * @param array|options $
- * @return bool|mix|mixed|string[]
- */
- public function meter($image, $options = array())
- {
- $data = array();
- $data['image'] = base64_encode($image);
- $data = array_merge($data, $options);
- return $this->request($this->meter, $data);
- }
- /**
- * 网络图片文字识别(含位置版)
- *
- * @param string $image
- * @param bool $detect_direction
- * @param bool $probability
- * @param bool $poly_location
- * @param null $recognize_granularity
- * @param array $options
- * @return string
- */
- public function webimageLoc($image, $options = array())
- {
- $data = array();
- $data['image'] = base64_encode($image);
- $data = array_merge($data, $options);
- return $this->request($this->webimageLoc, $data);
- }
- }
|