AipOcr.php 49 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346
  1. <?php
  2. /*
  3. * Copyright (c) 2017 Baidu.com, Inc. All Rights Reserved
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License"); you may not
  6. * use this file except in compliance with the License. You may obtain a copy of
  7. * the License at
  8. *
  9. * Http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  13. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  14. * License for the specific language governing permissions and limitations under
  15. * the License.
  16. */
  17. require_once 'lib/AipBase.php';
  18. class AipOcr extends AipBase
  19. {
  20. /**
  21. * 通用文字识别 general_basic api url
  22. * @var string
  23. */
  24. private $generalBasicUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/general_basic';
  25. /**
  26. * 通用文字识别(高精度版) accurate_basic api url
  27. * @var string
  28. */
  29. private $accurateBasicUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/accurate_basic';
  30. /**
  31. * 通用文字识别(含位置信息版) general api url
  32. * @var string
  33. */
  34. private $generalUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/general';
  35. /**
  36. * 通用文字识别(含位置高精度版) accurate api url
  37. * @var string
  38. */
  39. private $accurateUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/accurate';
  40. /**
  41. * 通用文字识别(含生僻字版) general_enhanced api url
  42. * @var string
  43. */
  44. private $generalEnhancedUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/general_enhanced';
  45. /**
  46. * 网络图片文字识别 web_image api url
  47. * @var string
  48. */
  49. private $webImageUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/webimage';
  50. /**
  51. * 身份证识别 idcard api url
  52. * @var string
  53. */
  54. private $idcardUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/idcard';
  55. /**
  56. * 银行卡识别 bankcard api url
  57. * @var string
  58. */
  59. private $bankcardUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/bankcard';
  60. /**
  61. * 驾驶证识别 driving_license api url
  62. * @var string
  63. */
  64. private $drivingLicenseUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/driving_license';
  65. /**
  66. * 行驶证识别 vehicle_license api url
  67. * @var string
  68. */
  69. private $vehicleLicenseUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/vehicle_license';
  70. /**
  71. * 车牌识别 license_plate api url
  72. * @var string
  73. */
  74. private $licensePlateUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/license_plate';
  75. /**
  76. * 营业执照识别 business_license api url
  77. * @var string
  78. */
  79. private $businessLicenseUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/business_license';
  80. /**
  81. * 通用票据识别 receipt api url
  82. * @var string
  83. */
  84. private $receiptUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/receipt';
  85. /**
  86. * 火车票识别 train_ticket api url
  87. * @var string
  88. */
  89. private $trainTicketUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/train_ticket';
  90. /**
  91. * 出租车票识别 taxi_receipt api url
  92. * @var string
  93. */
  94. private $taxiReceiptUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/taxi_receipt';
  95. /**
  96. * 表格文字识别同步接口 form api url
  97. * @var string
  98. */
  99. private $formUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/form';
  100. /**
  101. * 表格文字识别 table_recognize api url
  102. * @var string
  103. */
  104. private $tableRecognizeUrl = 'https://aip.baidubce.com/rest/2.0/solution/v1/form_ocr/request';
  105. /**
  106. * 表格识别结果 table_result_get api url
  107. * @var string
  108. */
  109. private $tableResultGetUrl = 'https://aip.baidubce.com/rest/2.0/solution/v1/form_ocr/get_request_result';
  110. /**
  111. * VIN码识别 vin_code api url
  112. * @var string
  113. */
  114. private $vinCodeUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/vin_code';
  115. /**
  116. * 定额发票识别 quota_invoice api url
  117. * @var string
  118. */
  119. private $quotaInvoiceUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/quota_invoice';
  120. /**
  121. * 户口本识别 household_register api url
  122. * @var string
  123. */
  124. private $householdRegisterUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/household_register';
  125. /**
  126. * 港澳通行证识别 HK_Macau_exitentrypermit api url
  127. * @var string
  128. */
  129. private $HKMacauExitentrypermitUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/HK_Macau_exitentrypermit';
  130. /**
  131. * 台湾通行证识别 taiwan_exitentrypermit api url
  132. * @var string
  133. */
  134. private $taiwanExitentrypermitUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/taiwan_exitentrypermit';
  135. /**
  136. * 出生医学证明识别 birth_certificate api url
  137. * @var string
  138. */
  139. private $birthCertificateUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/birth_certificate';
  140. /**
  141. * 机动车销售发票识别 vehicle_invoice api url
  142. * @var string
  143. */
  144. private $vehicleInvoiceUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/vehicle_invoice';
  145. /**
  146. * 车辆合格证识别 vehicle_certificate api url
  147. * @var string
  148. */
  149. private $vehicleCertificateUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/vehicle_certificate';
  150. /**
  151. * 税务局通用机打发票识别 invoice api url
  152. * @var string
  153. */
  154. private $invoiceUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/invoice';
  155. /**
  156. * 行程单识别 air_ticket api url
  157. * @var string
  158. */
  159. private $airTicketUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/air_ticket';
  160. /**
  161. * 保单识别 insurance_documents api url
  162. * @var string
  163. */
  164. private $insuranceDocumentsUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/insurance_documents';
  165. /**
  166. * 增值税发票识别 vat_invoice api url
  167. * @var string
  168. */
  169. private $vatInvoiceUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/vat_invoice';
  170. /**
  171. * 二维码识别 qrcode api url
  172. * @var string
  173. */
  174. private $qrcodeUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/qrcode';
  175. /**
  176. * 数字识别 numbers api url
  177. * @var string
  178. */
  179. private $numbersUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/numbers';
  180. /**
  181. * 彩票识别 lottery api url
  182. * @var string
  183. */
  184. private $lotteryUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/lottery';
  185. /**
  186. * 护照识别 passport api url
  187. * @var string
  188. */
  189. private $passportUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/passport';
  190. /**
  191. * 名片识别 business_card api url
  192. * @var string
  193. */
  194. private $businessCardUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/business_card';
  195. /**
  196. * 手写文字识别 handwriting api url
  197. * @var string
  198. */
  199. private $handwritingUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/handwriting';
  200. /**
  201. * 自定义模板文字识别 custom api url
  202. * @var string
  203. */
  204. private $customUrl = 'https://aip.baidubce.com/rest/2.0/solution/v1/iocr/recognise';
  205. /**
  206. * 文档版面分析与识别
  207. * @var string
  208. */
  209. private $docAnalysis = "https://aip.baidubce.com/rest/2.0/ocr/v1/doc_analysis";
  210. /**
  211. * 仪器仪表盘读数识别
  212. * @var string
  213. */
  214. private $meter = "https://aip.baidubce.com/rest/2.0/ocr/v1/meter";
  215. /**
  216. * 网络图片文字识别(含位置版)
  217. * @var string
  218. */
  219. private $webimageLoc = "https://aip.baidubce.com/rest/2.0/ocr/v1/webimage_loc";
  220. /**
  221. * 通用文字识别接口
  222. *
  223. * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
  224. * @param array $options - 可选参数对象,key: value都为string类型
  225. * @description options列表:
  226. * 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:韩语;
  227. * detect_direction 是否检测图像朝向,默认不检测,即:false。朝向是指输入图像是正常方向、逆时针旋转90/180/270度。可选值包括:<br>- true:检测朝向;<br>- false:不检测朝向。
  228. * detect_language 是否检测语言,默认不检测。当前支持(中文、英语、日语、韩语)
  229. * probability 是否返回识别结果中每一行的置信度
  230. * @return array
  231. */
  232. public function basicGeneral($image, $options = array())
  233. {
  234. $data = array();
  235. $data['image'] = base64_encode($image);
  236. $data = array_merge($data, $options);
  237. return $this->request($this->generalBasicUrl, $data);
  238. }
  239. /**
  240. * 通用文字识别接口
  241. *
  242. * @param string $url - 图片完整URL,URL长度不超过1024字节,URL对应的图片base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式,当image字段存在时url字段失效
  243. * @param array $options - 可选参数对象,key: value都为string类型
  244. * @description options列表:
  245. * 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:韩语;
  246. * detect_direction 是否检测图像朝向,默认不检测,即:false。朝向是指输入图像是正常方向、逆时针旋转90/180/270度。可选值包括:<br>- true:检测朝向;<br>- false:不检测朝向。
  247. * detect_language 是否检测语言,默认不检测。当前支持(中文、英语、日语、韩语)
  248. * probability 是否返回识别结果中每一行的置信度
  249. * @return array
  250. */
  251. public function basicGeneralUrl($url, $options = array())
  252. {
  253. $data = array();
  254. $data['url'] = $url;
  255. $data = array_merge($data, $options);
  256. return $this->request($this->generalBasicUrl, $data);
  257. }
  258. /**
  259. * 通用文字识别(高精度版)接口
  260. *
  261. * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
  262. * @param array $options - 可选参数对象,key: value都为string类型
  263. * @description options列表:
  264. * detect_direction 是否检测图像朝向,默认不检测,即:false。朝向是指输入图像是正常方向、逆时针旋转90/180/270度。可选值包括:<br>- true:检测朝向;<br>- false:不检测朝向。
  265. * probability 是否返回识别结果中每一行的置信度
  266. * @return array
  267. */
  268. public function basicAccurate($image, $options = array())
  269. {
  270. $data = array();
  271. $data['image'] = base64_encode($image);
  272. $data = array_merge($data, $options);
  273. return $this->request($this->accurateBasicUrl, $data);
  274. }
  275. /**
  276. * 通用文字识别(含位置信息版)接口
  277. *
  278. * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
  279. * @param array $options - 可选参数对象,key: value都为string类型
  280. * @description options列表:
  281. * recognize_granularity 是否定位单字符位置,big:不定位单字符位置,默认值;small:定位单字符位置
  282. * 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:韩语;
  283. * detect_direction 是否检测图像朝向,默认不检测,即:false。朝向是指输入图像是正常方向、逆时针旋转90/180/270度。可选值包括:<br>- true:检测朝向;<br>- false:不检测朝向。
  284. * detect_language 是否检测语言,默认不检测。当前支持(中文、英语、日语、韩语)
  285. * vertexes_location 是否返回文字外接多边形顶点位置,不支持单字位置。默认为false
  286. * probability 是否返回识别结果中每一行的置信度
  287. * @return array
  288. */
  289. public function general($image, $options = array())
  290. {
  291. $data = array();
  292. $data['image'] = base64_encode($image);
  293. $data = array_merge($data, $options);
  294. return $this->request($this->generalUrl, $data);
  295. }
  296. /**
  297. * 通用文字识别(含位置信息版)接口
  298. *
  299. * @param string $url - 图片完整URL,URL长度不超过1024字节,URL对应的图片base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式,当image字段存在时url字段失效
  300. * @param array $options - 可选参数对象,key: value都为string类型
  301. * @description options列表:
  302. * recognize_granularity 是否定位单字符位置,big:不定位单字符位置,默认值;small:定位单字符位置
  303. * 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:韩语;
  304. * detect_direction 是否检测图像朝向,默认不检测,即:false。朝向是指输入图像是正常方向、逆时针旋转90/180/270度。可选值包括:<br>- true:检测朝向;<br>- false:不检测朝向。
  305. * detect_language 是否检测语言,默认不检测。当前支持(中文、英语、日语、韩语)
  306. * vertexes_location 是否返回文字外接多边形顶点位置,不支持单字位置。默认为false
  307. * probability 是否返回识别结果中每一行的置信度
  308. * @return array
  309. */
  310. public function generalUrl($url, $options = array())
  311. {
  312. $data = array();
  313. $data['url'] = $url;
  314. $data = array_merge($data, $options);
  315. return $this->request($this->generalUrl, $data);
  316. }
  317. /**
  318. * 通用文字识别(含位置高精度版)接口
  319. *
  320. * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
  321. * @param array $options - 可选参数对象,key: value都为string类型
  322. * @description options列表:
  323. * recognize_granularity 是否定位单字符位置,big:不定位单字符位置,默认值;small:定位单字符位置
  324. * detect_direction 是否检测图像朝向,默认不检测,即:false。朝向是指输入图像是正常方向、逆时针旋转90/180/270度。可选值包括:<br>- true:检测朝向;<br>- false:不检测朝向。
  325. * vertexes_location 是否返回文字外接多边形顶点位置,不支持单字位置。默认为false
  326. * probability 是否返回识别结果中每一行的置信度
  327. * @return array
  328. */
  329. public function accurate($image, $options = array())
  330. {
  331. $data = array();
  332. $data['image'] = base64_encode($image);
  333. $data = array_merge($data, $options);
  334. return $this->request($this->accurateUrl, $data);
  335. }
  336. /**
  337. * 通用文字识别(含生僻字版)接口
  338. *
  339. * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
  340. * @param array $options - 可选参数对象,key: value都为string类型
  341. * @description options列表:
  342. * 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:韩语;
  343. * detect_direction 是否检测图像朝向,默认不检测,即:false。朝向是指输入图像是正常方向、逆时针旋转90/180/270度。可选值包括:<br>- true:检测朝向;<br>- false:不检测朝向。
  344. * detect_language 是否检测语言,默认不检测。当前支持(中文、英语、日语、韩语)
  345. * probability 是否返回识别结果中每一行的置信度
  346. * @return array
  347. */
  348. public function enhancedGeneral($image, $options = array())
  349. {
  350. $data = array();
  351. $data['image'] = base64_encode($image);
  352. $data = array_merge($data, $options);
  353. return $this->request($this->generalEnhancedUrl, $data);
  354. }
  355. /**
  356. * 通用文字识别(含生僻字版)接口
  357. *
  358. * @param string $url - 图片完整URL,URL长度不超过1024字节,URL对应的图片base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式,当image字段存在时url字段失效
  359. * @param array $options - 可选参数对象,key: value都为string类型
  360. * @description options列表:
  361. * 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:韩语;
  362. * detect_direction 是否检测图像朝向,默认不检测,即:false。朝向是指输入图像是正常方向、逆时针旋转90/180/270度。可选值包括:<br>- true:检测朝向;<br>- false:不检测朝向。
  363. * detect_language 是否检测语言,默认不检测。当前支持(中文、英语、日语、韩语)
  364. * probability 是否返回识别结果中每一行的置信度
  365. * @return array
  366. */
  367. public function enhancedGeneralUrl($url, $options = array())
  368. {
  369. $data = array();
  370. $data['url'] = $url;
  371. $data = array_merge($data, $options);
  372. return $this->request($this->generalEnhancedUrl, $data);
  373. }
  374. /**
  375. * 网络图片文字识别接口
  376. *
  377. * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
  378. * @param array $options - 可选参数对象,key: value都为string类型
  379. * @description options列表:
  380. * detect_direction 是否检测图像朝向,默认不检测,即:false。朝向是指输入图像是正常方向、逆时针旋转90/180/270度。可选值包括:<br>- true:检测朝向;<br>- false:不检测朝向。
  381. * detect_language 是否检测语言,默认不检测。当前支持(中文、英语、日语、韩语)
  382. * @return array
  383. */
  384. public function webImage($image, $options = array())
  385. {
  386. $data = array();
  387. $data['image'] = base64_encode($image);
  388. $data = array_merge($data, $options);
  389. return $this->request($this->webImageUrl, $data);
  390. }
  391. /**
  392. * 网络图片文字识别接口
  393. *
  394. * @param string $url - 图片完整URL,URL长度不超过1024字节,URL对应的图片base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式,当image字段存在时url字段失效
  395. * @param array $options - 可选参数对象,key: value都为string类型
  396. * @description options列表:
  397. * detect_direction 是否检测图像朝向,默认不检测,即:false。朝向是指输入图像是正常方向、逆时针旋转90/180/270度。可选值包括:<br>- true:检测朝向;<br>- false:不检测朝向。
  398. * detect_language 是否检测语言,默认不检测。当前支持(中文、英语、日语、韩语)
  399. * @return array
  400. */
  401. public function webImageUrl($url, $options = array())
  402. {
  403. $data = array();
  404. $data['url'] = $url;
  405. $data = array_merge($data, $options);
  406. return $this->request($this->webImageUrl, $data);
  407. }
  408. /**
  409. * 身份证识别接口
  410. *
  411. * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
  412. * @param string $idCardSide - front:身份证含照片的一面;back:身份证带国徽的一面
  413. * @param array $options - 可选参数对象,key: value都为string类型
  414. * @description options列表:
  415. * detect_direction 是否检测图像朝向,默认不检测,即:false。朝向是指输入图像是正常方向、逆时针旋转90/180/270度。可选值包括:<br>- true:检测朝向;<br>- false:不检测朝向。
  416. * detect_risk 是否开启身份证风险类型(身份证复印件、临时身份证、身份证翻拍、修改过的身份证)功能,默认不开启,即:false。可选值:true-开启;false-不开启
  417. * @return array
  418. */
  419. public function idcard($image, $idCardSide, $options = array())
  420. {
  421. $data = array();
  422. $data['image'] = base64_encode($image);
  423. $data['id_card_side'] = $idCardSide;
  424. $data = array_merge($data, $options);
  425. return $this->request($this->idcardUrl, $data);
  426. }
  427. /**
  428. * 银行卡识别接口
  429. *
  430. * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
  431. * @param array $options - 可选参数对象,key: value都为string类型
  432. * @description options列表:
  433. * @return array
  434. */
  435. public function bankcard($image, $options = array())
  436. {
  437. $data = array();
  438. $data['image'] = base64_encode($image);
  439. $data = array_merge($data, $options);
  440. return $this->request($this->bankcardUrl, $data);
  441. }
  442. /**
  443. * 驾驶证识别接口
  444. *
  445. * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
  446. * @param array $options - 可选参数对象,key: value都为string类型
  447. * @description options列表:
  448. * detect_direction 是否检测图像朝向,默认不检测,即:false。朝向是指输入图像是正常方向、逆时针旋转90/180/270度。可选值包括:<br>- true:检测朝向;<br>- false:不检测朝向。
  449. * @return array
  450. */
  451. public function drivingLicense($image, $options = array())
  452. {
  453. $data = array();
  454. $data['image'] = base64_encode($image);
  455. $data = array_merge($data, $options);
  456. return $this->request($this->drivingLicenseUrl, $data);
  457. }
  458. /**
  459. * 行驶证识别接口
  460. *
  461. * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
  462. * @param array $options - 可选参数对象,key: value都为string类型
  463. * @description options列表:
  464. * detect_direction 是否检测图像朝向,默认不检测,即:false。朝向是指输入图像是正常方向、逆时针旋转90/180/270度。可选值包括:<br>- true:检测朝向;<br>- false:不检测朝向。
  465. * accuracy normal 使用快速服务,1200ms左右时延;缺省或其它值使用高精度服务,1600ms左右时延
  466. * @return array
  467. */
  468. public function vehicleLicense($image, $options = array())
  469. {
  470. $data = array();
  471. $data['image'] = base64_encode($image);
  472. $data = array_merge($data, $options);
  473. return $this->request($this->vehicleLicenseUrl, $data);
  474. }
  475. /**
  476. * 车牌识别接口
  477. *
  478. * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
  479. * @param array $options - 可选参数对象,key: value都为string类型
  480. * @description options列表:
  481. * multi_detect 是否检测多张车牌,默认为false,当置为true的时候可以对一张图片内的多张车牌进行识别
  482. * @return array
  483. */
  484. public function licensePlate($image, $options = array())
  485. {
  486. $data = array();
  487. $data['image'] = base64_encode($image);
  488. $data = array_merge($data, $options);
  489. return $this->request($this->licensePlateUrl, $data);
  490. }
  491. /**
  492. * 营业执照识别接口
  493. *
  494. * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
  495. * @param array $options - 可选参数对象,key: value都为string类型
  496. * @description options列表:
  497. * @return array
  498. */
  499. public function businessLicense($image, $options = array())
  500. {
  501. $data = array();
  502. $data['image'] = base64_encode($image);
  503. $data = array_merge($data, $options);
  504. return $this->request($this->businessLicenseUrl, $data);
  505. }
  506. /**
  507. * 通用票据识别接口
  508. *
  509. * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
  510. * @param array $options - 可选参数对象,key: value都为string类型
  511. * @description options列表:
  512. * recognize_granularity 是否定位单字符位置,big:不定位单字符位置,默认值;small:定位单字符位置
  513. * probability 是否返回识别结果中每一行的置信度
  514. * accuracy normal 使用快速服务,1200ms左右时延;缺省或其它值使用高精度服务,1600ms左右时延
  515. * detect_direction 是否检测图像朝向,默认不检测,即:false。朝向是指输入图像是正常方向、逆时针旋转90/180/270度。可选值包括:<br>- true:检测朝向;<br>- false:不检测朝向。
  516. * @return array
  517. */
  518. public function receipt($image, $options = array())
  519. {
  520. $data = array();
  521. $data['image'] = base64_encode($image);
  522. $data = array_merge($data, $options);
  523. return $this->request($this->receiptUrl, $data);
  524. }
  525. /**
  526. * 火车票识别接口
  527. *
  528. * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
  529. * @param array $options - 可选参数对象,key: value都为string类型
  530. * @description options列表:
  531. * @return array
  532. */
  533. public function trainTicket($image, $options = array())
  534. {
  535. $data = array();
  536. $data['image'] = base64_encode($image);
  537. $data = array_merge($data, $options);
  538. return $this->request($this->trainTicketUrl, $data);
  539. }
  540. /**
  541. * 火车票识别接口
  542. *
  543. * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
  544. * @param array $options - 可选参数对象,key: value都为string类型
  545. * @description options列表:
  546. * @return array
  547. */
  548. public function trainTicketUrl($image, $options = array())
  549. {
  550. $data = array();
  551. $data['url'] = $image;
  552. $data = array_merge($data, $options);
  553. return $this->request($this->trainTicketUrl, $data);
  554. }
  555. /**
  556. * 出租车票识别接口
  557. *
  558. * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
  559. * @param array $options - 可选参数对象,key: value都为string类型
  560. * @description options列表:
  561. * @return array
  562. */
  563. public function taxiReceipt($image, $options = array())
  564. {
  565. $data = array();
  566. $data['image'] = base64_encode($image);
  567. $data = array_merge($data, $options);
  568. return $this->request($this->taxiReceiptUrl, $data);
  569. }
  570. /**
  571. * 出租车票识别接口
  572. *
  573. * @param string $url - 图片完整URL,URL长度不超过1024字节,URL对应的图片base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式,当image字段存在时url字段失效
  574. * @param array $options - 可选参数对象,key: value都为string类型
  575. * @description options列表:
  576. * @return array
  577. */
  578. public function taxiReceiptUrl($image, $options = array())
  579. {
  580. $data = array();
  581. $data['url'] = $image;
  582. $data = array_merge($data, $options);
  583. return $this->request($this->taxiReceiptUrl, $data);
  584. }
  585. /**
  586. * 表格文字识别同步接口接口
  587. *
  588. * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
  589. * @param array $options - 可选参数对象,key: value都为string类型
  590. * @description options列表:
  591. * @return array
  592. */
  593. public function form($image, $options = array())
  594. {
  595. $data = array();
  596. $data['image'] = base64_encode($image);
  597. $data = array_merge($data, $options);
  598. return $this->request($this->formUrl, $data);
  599. }
  600. /**
  601. * 表格文字识别接口
  602. *
  603. * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
  604. * @param array $options - 可选参数对象,key: value都为string类型
  605. * @description options列表:
  606. * @return array
  607. */
  608. public function tableRecognitionAsync($image, $options = array())
  609. {
  610. $data = array();
  611. $data['image'] = base64_encode($image);
  612. $data = array_merge($data, $options);
  613. return $this->request($this->tableRecognizeUrl, $data);
  614. }
  615. /**
  616. * 表格识别结果接口
  617. *
  618. * @param string $requestId - 发送表格文字识别请求时返回的request id
  619. * @param array $options - 可选参数对象,key: value都为string类型
  620. * @description options列表:
  621. * result_type 期望获取结果的类型,取值为“excel”时返回xls文件的地址,取值为“json”时返回json格式的字符串,默认为”excel”
  622. * @return array
  623. */
  624. public function getTableRecognitionResult($requestId, $options = array())
  625. {
  626. $data = array();
  627. $data['request_id'] = $requestId;
  628. $data = array_merge($data, $options);
  629. return $this->request($this->tableResultGetUrl, $data);
  630. }
  631. /**
  632. * VIN码识别接口
  633. *
  634. * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
  635. * @param array $options - 可选参数对象,key: value都为string类型
  636. * @description options列表:
  637. * @return array
  638. */
  639. public function vinCode($image, $options = array())
  640. {
  641. $data = array();
  642. $data['image'] = base64_encode($image);
  643. $data = array_merge($data, $options);
  644. return $this->request($this->vinCodeUrl, $data);
  645. }
  646. /**
  647. * VIN码识别接口
  648. * @param string $url - 图片完整URL,URL长度不超过1024字节,URL对应的图片base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式,当image字段存在时url字段失效
  649. * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
  650. * @param array $options - 可选参数对象,key: value都为string类型
  651. * @description options列表:
  652. * @return array
  653. */
  654. public function vinCodeUrl($image, $options = array())
  655. {
  656. $data = array();
  657. $data['url'] = $image;
  658. $data = array_merge($data, $options);
  659. return $this->request($this->vinCodeUrl, $data);
  660. }
  661. /**
  662. * 定额发票识别接口
  663. *
  664. * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
  665. * @param array $options - 可选参数对象,key: value都为string类型
  666. * @description options列表:
  667. * @return array
  668. */
  669. public function quotaInvoice($image, $options = array())
  670. {
  671. $data = array();
  672. $data['image'] = base64_encode($image);
  673. $data = array_merge($data, $options);
  674. return $this->request($this->quotaInvoiceUrl, $data);
  675. }
  676. /**
  677. * 户口本识别接口
  678. *
  679. * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
  680. * @param array $options - 可选参数对象,key: value都为string类型
  681. * @description options列表:
  682. * @return array
  683. */
  684. public function householdRegister($image, $options = array())
  685. {
  686. $data = array();
  687. $data['image'] = base64_encode($image);
  688. $data = array_merge($data, $options);
  689. return $this->request($this->householdRegisterUrl, $data);
  690. }
  691. /**
  692. * 港澳通行证识别接口
  693. *
  694. * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
  695. * @param array $options - 可选参数对象,key: value都为string类型
  696. * @description options列表:
  697. * @return array
  698. */
  699. public function HKMacauExitentrypermit($image, $options = array())
  700. {
  701. $data = array();
  702. $data['image'] = base64_encode($image);
  703. $data = array_merge($data, $options);
  704. return $this->request($this->HKMacauExitentrypermitUrl, $data);
  705. }
  706. /**
  707. * 台湾通行证识别接口
  708. *
  709. * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
  710. * @param array $options - 可选参数对象,key: value都为string类型
  711. * @description options列表:
  712. * @return array
  713. */
  714. public function taiwanExitentrypermit($image, $options = array())
  715. {
  716. $data = array();
  717. $data['image'] = base64_encode($image);
  718. $data = array_merge($data, $options);
  719. return $this->request($this->taiwanExitentrypermitUrl, $data);
  720. }
  721. /**
  722. * 出生医学证明识别接口
  723. *
  724. * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
  725. * @param array $options - 可选参数对象,key: value都为string类型
  726. * @description options列表:
  727. * @return array
  728. */
  729. public function birthCertificate($image, $options = array())
  730. {
  731. $data = array();
  732. $data['image'] = base64_encode($image);
  733. $data = array_merge($data, $options);
  734. return $this->request($this->birthCertificateUrl, $data);
  735. }
  736. /**
  737. * 机动车销售发票识别接口
  738. *
  739. * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
  740. * @param array $options - 可选参数对象,key: value都为string类型
  741. * @description options列表:
  742. * @return array
  743. */
  744. public function vehicleInvoice($image, $options = array())
  745. {
  746. $data = array();
  747. $data['image'] = base64_encode($image);
  748. $data = array_merge($data, $options);
  749. return $this->request($this->vehicleInvoiceUrl, $data);
  750. }
  751. /**
  752. * 车辆合格证识别接口
  753. *
  754. * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
  755. * @param array $options - 可选参数对象,key: value都为string类型
  756. * @description options列表:
  757. * @return array
  758. */
  759. public function vehicleCertificate($image, $options = array())
  760. {
  761. $data = array();
  762. $data['image'] = base64_encode($image);
  763. $data = array_merge($data, $options);
  764. return $this->request($this->vehicleCertificateUrl, $data);
  765. }
  766. /**
  767. * 税务局通用机打发票识别接口
  768. *
  769. * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
  770. * @param array $options - 可选参数对象,key: value都为string类型
  771. * @description options列表:
  772. * location 是否输出位置信息,true:输出位置信息,false:不输出位置信息,默认false
  773. * @return array
  774. */
  775. public function invoice($image, $options = array())
  776. {
  777. $data = array();
  778. $data['image'] = base64_encode($image);
  779. $data = array_merge($data, $options);
  780. return $this->request($this->invoiceUrl, $data);
  781. }
  782. /**
  783. * 行程单识别接口
  784. *
  785. * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
  786. * @param array $options - 可选参数对象,key: value都为string类型
  787. * @description options列表:
  788. * location 是否输出位置信息,true:输出位置信息,false:不输出位置信息,默认false
  789. * @return array
  790. */
  791. public function airTicket($image, $options = array())
  792. {
  793. $data = array();
  794. $data['image'] = base64_encode($image);
  795. $data = array_merge($data, $options);
  796. return $this->request($this->airTicketUrl, $data);
  797. }
  798. /**
  799. * 保单识别接口
  800. *
  801. * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
  802. * @param array $options - 可选参数对象,key: value都为string类型
  803. * @description options列表:
  804. * rkv_business 是否进行商业逻辑处理,rue:进行商业逻辑处理,false:不进行商业逻辑处理,默认true
  805. * @return array
  806. */
  807. public function insuranceDocuments($image, $options = array())
  808. {
  809. $data = array();
  810. $data['image'] = base64_encode($image);
  811. $data = array_merge($data, $options);
  812. return $this->request($this->insuranceDocumentsUrl, $data);
  813. }
  814. /**
  815. * 增值税发票识别接口
  816. *
  817. * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
  818. * @param array $options - 可选参数对象,key: value都为string类型
  819. * @description options列表:
  820. * @return array
  821. */
  822. public function vatInvoice($image, $options = array())
  823. {
  824. $data = array();
  825. $data['image'] = base64_encode($image);
  826. $data = array_merge($data, $options);
  827. return $this->request($this->vatInvoiceUrl, $data);
  828. }
  829. /**
  830. * 增值税发票识别接口
  831. *
  832. * @param string $url - 图片完整URL,URL长度不超过1024字节,URL对应的图片base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式,当image字段存在时url字段失效
  833. * @param array $options - 可选参数对象,key: value都为string类型
  834. * @description options列表:
  835. * string type 进行识别的增值税发票类型,默认为 normal,可缺省
  836. * - normal:可识别增值税普票、专票、电子发票
  837. * - roll:可识别增值税卷票
  838. * @return array
  839. */
  840. public function vatInvoiceUrl($url, $options = array())
  841. {
  842. $data = array();
  843. $data['url'] = $url;
  844. $data = array_merge($data, $options);
  845. return $this->request($this->vatInvoiceUrl, $data);
  846. }
  847. /**
  848. * 增值税发票识别接口
  849. *
  850. * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
  851. * @param array $options - 可选参数对象,key: value都为string类型
  852. * @description options列表
  853. * string type 进行识别的增值税发票类型,默认为 normal,可缺省
  854. * - normal:可识别增值税普票、专票、电子发票
  855. * - roll:可识别增值税卷票
  856. * @return array
  857. */
  858. public function vatInvoicePdf($pdfFile, $options = array())
  859. {
  860. $data = array();
  861. $data['pdf_file'] = base64_encode($pdfFile);
  862. $data = array_merge($data, $options);
  863. return $this->request($this->vatInvoiceUrl, $data);
  864. }
  865. /**
  866. * 二维码识别接口
  867. *
  868. * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
  869. * @param array $options - 可选参数对象,key: value都为string类型
  870. * @description options列表:
  871. * @return array
  872. */
  873. public function qrcode($image, $options = array())
  874. {
  875. $data = array();
  876. $data['image'] = base64_encode($image);
  877. $data = array_merge($data, $options);
  878. return $this->request($this->qrcodeUrl, $data);
  879. }
  880. /**
  881. * 数字识别接口
  882. *
  883. * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
  884. * @param array $options - 可选参数对象,key: value都为string类型
  885. * @description options列表:
  886. * recognize_granularity 是否定位单字符位置,big:不定位单字符位置,默认值;small:定位单字符位置
  887. * detect_direction 是否检测图像朝向,默认不检测,即:false。朝向是指输入图像是正常方向、逆时针旋转90/180/270度。可选值包括:<br>- true:检测朝向;<br>- false:不检测朝向。
  888. * @return array
  889. */
  890. public function numbers($image, $options = array())
  891. {
  892. $data = array();
  893. $data['image'] = base64_encode($image);
  894. $data = array_merge($data, $options);
  895. return $this->request($this->numbersUrl, $data);
  896. }
  897. /**
  898. * 彩票识别接口
  899. *
  900. * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
  901. * @param array $options - 可选参数对象,key: value都为string类型
  902. * @description options列表:
  903. * recognize_granularity 是否定位单字符位置,big:不定位单字符位置,默认值;small:定位单字符位置
  904. * @return array
  905. */
  906. public function lottery($image, $options = array())
  907. {
  908. $data = array();
  909. $data['image'] = base64_encode($image);
  910. $data = array_merge($data, $options);
  911. return $this->request($this->lotteryUrl, $data);
  912. }
  913. /**
  914. * 护照识别接口
  915. *
  916. * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
  917. * @param array $options - 可选参数对象,key: value都为string类型
  918. * @description options列表:
  919. * @return array
  920. */
  921. public function passport($image, $options = array())
  922. {
  923. $data = array();
  924. $data['image'] = base64_encode($image);
  925. $data = array_merge($data, $options);
  926. return $this->request($this->passportUrl, $data);
  927. }
  928. /**
  929. * 名片识别接口
  930. *
  931. * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
  932. * @param array $options - 可选参数对象,key: value都为string类型
  933. * @description options列表:
  934. * @return array
  935. */
  936. public function businessCard($image, $options = array())
  937. {
  938. $data = array();
  939. $data['image'] = base64_encode($image);
  940. $data = array_merge($data, $options);
  941. return $this->request($this->businessCardUrl, $data);
  942. }
  943. /**
  944. * 手写文字识别接口
  945. *
  946. * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
  947. * @param array $options - 可选参数对象,key: value都为string类型
  948. * @description options列表:
  949. * recognize_granularity 是否定位单字符位置,big:不定位单字符位置,默认值;small:定位单字符位置
  950. * @return array
  951. */
  952. public function handwriting($image, $options = array())
  953. {
  954. $data = array();
  955. $data['image'] = base64_encode($image);
  956. $data = array_merge($data, $options);
  957. return $this->request($this->handwritingUrl, $data);
  958. }
  959. /**
  960. * 自定义模板文字识别接口
  961. *
  962. * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
  963. * @param array $options - 可选参数对象,key: value都为string类型
  964. * @description options列表:
  965. * templateSign 您在自定义文字识别平台制作的模板的ID
  966. * classifierId 分类器Id。这个参数和templateSign至少存在一个,优先使用templateSign。存在templateSign时,表示使用指定模板;如果没有templateSign而有classifierId,表示使用分类器去判断使用哪个模板
  967. * @return array
  968. */
  969. public function custom($image, $options = array())
  970. {
  971. $data = array();
  972. $data['image'] = base64_encode($image);
  973. $data = array_merge($data, $options);
  974. return $this->request($this->customUrl, $data);
  975. }
  976. /**
  977. * 同步请求
  978. * @param string $image 图像读取
  979. * @param options 接口可选参数
  980. * @return array
  981. */
  982. public function tableRecognition($image, $options = array(), $timeout = 10000)
  983. {
  984. $result = $this->tableRecognitionAsync($image);
  985. if (isset($result['error_code'])) {
  986. return $result;
  987. }
  988. $requestId = $result['result'][0]['request_id'];
  989. $count = ceil($timeout / 1000);
  990. for ($i = 0; $i < $count; $i++) {
  991. $result = $this->getTableRecognitionResult($requestId, $options);
  992. // 完成
  993. if ($result['result']['ret_code'] == 3) {
  994. break;
  995. }
  996. sleep(1);
  997. }
  998. return $result;
  999. }
  1000. /**
  1001. * 文档版面分析与识别
  1002. *
  1003. * @param string $image
  1004. * @param string $languageType
  1005. * @param string $resultType
  1006. * @param bool $detectDirection
  1007. * @param bool $lineProbability
  1008. * @param null $wordsType
  1009. * @param null $layoutAnalysis
  1010. * @param array $options
  1011. * @return bool|mix|mixed|string|string[]
  1012. */
  1013. public function docAnalysis($image, $languageType, $resultType, $options = array())
  1014. {
  1015. $data = array();
  1016. $data['image'] = base64_encode($image);
  1017. if ($languageType == null || in_array($languageType, array('CHN_ENG', 'ENG')) <> 1) {
  1018. return "please provide correct param: language_type ";
  1019. }
  1020. $data['language_type'] = $languageType;
  1021. if ($resultType == null || in_array($resultType, array('big', 'small')) <> 1) {
  1022. return "please provide correct param: result_type ";
  1023. }
  1024. $data['result_type'] = $resultType;
  1025. $data = array_merge($data, $options);
  1026. return $this->request($this->docAnalysis, $data);
  1027. }
  1028. /**
  1029. * 仪器仪表盘读数识别
  1030. *
  1031. * @param string $image
  1032. * @param bool $probability
  1033. * @param bool $polyLocation
  1034. * @param array|options $
  1035. * @return bool|mix|mixed|string[]
  1036. */
  1037. public function meter($image, $options = array())
  1038. {
  1039. $data = array();
  1040. $data['image'] = base64_encode($image);
  1041. $data = array_merge($data, $options);
  1042. return $this->request($this->meter, $data);
  1043. }
  1044. /**
  1045. * 网络图片文字识别(含位置版)
  1046. *
  1047. * @param string $image
  1048. * @param bool $detect_direction
  1049. * @param bool $probability
  1050. * @param bool $poly_location
  1051. * @param null $recognize_granularity
  1052. * @param array $options
  1053. * @return string
  1054. */
  1055. public function webimageLoc($image, $options = array())
  1056. {
  1057. $data = array();
  1058. $data['image'] = base64_encode($image);
  1059. $data = array_merge($data, $options);
  1060. return $this->request($this->webimageLoc, $data);
  1061. }
  1062. }