Contribute to wanghaisheng/PaddleOCR-json-nodejs-api-vercel development by creating an account on GitHub.
OCR离线图片文字识别命令行windows程序,以JSON字符串形式输出结果,方便别的程序调用。提供各种语言API。由 PaddleOCR C++ 编译。 - PaddleOCR-json/api/node.js/package.json at a1fae178da2622daf4153ab3772ab61e7cea162a · xx-tao/PaddleOCR-json
PunchlY / PaddleOCR-json-node-api Public forked from hiroi-sora/PaddleOCR-json Notifications Fork 2 Star 6 Code Issues 1 Pull requests Discussions Actions Projects Security Insights New issue Have a question about this project? Sign up for a free GitHub account to open an issue...
api/node.js/ts/worker.ts Original file line numberDiff line numberDiff line change @@ -11,8 +11,6 @@ interface workerData { debug?: boolean; } const currentPath = process.cwd(); const __default = { path: 'PaddleOCR-json.exe', args: [], @@ -31,6 +29,9 @@ const __defaul...
cwd: './PaddleOCR-json', }); }, /* debug */true); ocr.postMessage({ image_dir: 'path/to/test/img' }) .then((data) => console.log(data)); 8 changes: 6 additions & 2 deletions 8 api/node.js/es5/index.d.ts Original file line numberDiff line numberDiff line change @@ ...
modified: api/node.js/package.json f00b120 Contributor Author PunchlY commented May 30, 2023 paddleocrjson@1.1.0包已删除use_debug字段的使用. 传输已从{”image_dir":""}更改到了{"image_path":""}. 支持了addr与port参数. PunchlY added 2 commits May 30, 2023 19:59 Merge pull request ...
path: 'PaddleOCR_json.exe', path: 'PaddleOCR-json.exe', args: [], options: { argv0: undefined, 1 change: 1 addition & 0 deletions 1 api/node.js/test/.gitignore Original file line numberDiff line numberDiff line change @@ -1,3 +1,4 @@ node_modules tmp package-lock.json test...
{ "name": "paddleocrjson", "version": "1.1.0-c", "version": "1.1.1", "description": "基于https://github.com/hiroi-sora/PaddleOCR-json 的node.js api", "homepage": "https://github.com/PunchlY/PaddleOCR-json-node-api/blob/main/api/node.js", "repository": {44...
modified: api/node.js/esnext/worker.js modified: api/node.js/ts/worker.ts main (hiroi-sora/PaddleOCR-json#55) PunchlY committed Jun 24, 2023 1 parent 88fea15 commit 83591d2 Showing 3 changed files with 6 additions and 3 deletions. Whitespace Ignore whitespace Split Unified api...
api/node.js/README.md Original file line numberDiff line numberDiff line change @@ -66,7 +66,7 @@ npm install paddleocrjson ```js const OCR = require('paddleocrjson'); const OCR = require('paddleocrjson/es6'); // ES6 const OCR = require('paddleocrjson/es5'); // ES5 const ocr...