登录 注册
当前位置:主页 > 资源下载 > 18 > baidu-ocr:百度OCR文字识别API For Node.js下载

baidu-ocr:百度OCR文字识别API For Node.js下载

  • 更新:2024-09-08 10:02:38
  • 大小:283KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

Baidu-ocr API For Node Install npm install baidu-ocr Test BAIDU_APIKEY='your api key' make test How to use var ocr = require('baidu-ocr').create( 'your api key' ), image = __dirname + '/love-letter.jpg'; // detectType: `LocateRecognize`代表整图文字检测、识别,以行为单位(默认) // languageType: `CHN_ENG`(中英)(默认) // imageType: `2`代表图片原文件(只支持JPG) // image: 图片路径 ocr.scan( 'LocateRecognize', 'CHN_ENG', 2, image,