├── .gitignore ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── assets ├── 2.pdf ├── 3.pdf ├── 4.pdf ├── demo.gif ├── easyocr.gif ├── example.jpg ├── test.pdf └── 专家意见和签名表.pdf ├── client ├── css │ └── style.css ├── index.html ├── main.js ├── ocr.js ├── renderer.js └── utils.js ├── module ├── auth.js ├── config.js ├── ocr │ ├── AipOcrClient.js │ └── index.js ├── pdf │ ├── index.js │ └── pdf2image.js └── voice │ ├── assets │ ├── 16k-23850.amr │ ├── 16k.pcm │ ├── 16k.wav │ ├── 8k-122.amr │ ├── 8k.pcm │ └── 8k.wav │ ├── client.js │ └── recognize.js ├── package.json ├── pdfinfo.exe ├── software ├── Ghostscript 9.23 for Windows.exe ├── GraphicsMagick-1.3.28-Q16-win64-dll.exe ├── README.md └── pdfinfo.exe └── test ├── ocr.test.js └── pdf.test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giscafer/easyocr/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giscafer/easyocr/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giscafer/easyocr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giscafer/easyocr/HEAD/README.md -------------------------------------------------------------------------------- /assets/2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giscafer/easyocr/HEAD/assets/2.pdf -------------------------------------------------------------------------------- /assets/3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giscafer/easyocr/HEAD/assets/3.pdf -------------------------------------------------------------------------------- /assets/4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giscafer/easyocr/HEAD/assets/4.pdf -------------------------------------------------------------------------------- /assets/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giscafer/easyocr/HEAD/assets/demo.gif -------------------------------------------------------------------------------- /assets/easyocr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giscafer/easyocr/HEAD/assets/easyocr.gif -------------------------------------------------------------------------------- /assets/example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giscafer/easyocr/HEAD/assets/example.jpg -------------------------------------------------------------------------------- /assets/test.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giscafer/easyocr/HEAD/assets/test.pdf -------------------------------------------------------------------------------- /assets/专家意见和签名表.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giscafer/easyocr/HEAD/assets/专家意见和签名表.pdf -------------------------------------------------------------------------------- /client/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giscafer/easyocr/HEAD/client/css/style.css -------------------------------------------------------------------------------- /client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giscafer/easyocr/HEAD/client/index.html -------------------------------------------------------------------------------- /client/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giscafer/easyocr/HEAD/client/main.js -------------------------------------------------------------------------------- /client/ocr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giscafer/easyocr/HEAD/client/ocr.js -------------------------------------------------------------------------------- /client/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giscafer/easyocr/HEAD/client/renderer.js -------------------------------------------------------------------------------- /client/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giscafer/easyocr/HEAD/client/utils.js -------------------------------------------------------------------------------- /module/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giscafer/easyocr/HEAD/module/auth.js -------------------------------------------------------------------------------- /module/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giscafer/easyocr/HEAD/module/config.js -------------------------------------------------------------------------------- /module/ocr/AipOcrClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giscafer/easyocr/HEAD/module/ocr/AipOcrClient.js -------------------------------------------------------------------------------- /module/ocr/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giscafer/easyocr/HEAD/module/ocr/index.js -------------------------------------------------------------------------------- /module/pdf/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giscafer/easyocr/HEAD/module/pdf/index.js -------------------------------------------------------------------------------- /module/pdf/pdf2image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giscafer/easyocr/HEAD/module/pdf/pdf2image.js -------------------------------------------------------------------------------- /module/voice/assets/16k-23850.amr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giscafer/easyocr/HEAD/module/voice/assets/16k-23850.amr -------------------------------------------------------------------------------- /module/voice/assets/16k.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giscafer/easyocr/HEAD/module/voice/assets/16k.pcm -------------------------------------------------------------------------------- /module/voice/assets/16k.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giscafer/easyocr/HEAD/module/voice/assets/16k.wav -------------------------------------------------------------------------------- /module/voice/assets/8k-122.amr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giscafer/easyocr/HEAD/module/voice/assets/8k-122.amr -------------------------------------------------------------------------------- /module/voice/assets/8k.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giscafer/easyocr/HEAD/module/voice/assets/8k.pcm -------------------------------------------------------------------------------- /module/voice/assets/8k.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giscafer/easyocr/HEAD/module/voice/assets/8k.wav -------------------------------------------------------------------------------- /module/voice/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giscafer/easyocr/HEAD/module/voice/client.js -------------------------------------------------------------------------------- /module/voice/recognize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giscafer/easyocr/HEAD/module/voice/recognize.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giscafer/easyocr/HEAD/package.json -------------------------------------------------------------------------------- /pdfinfo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giscafer/easyocr/HEAD/pdfinfo.exe -------------------------------------------------------------------------------- /software/Ghostscript 9.23 for Windows.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giscafer/easyocr/HEAD/software/Ghostscript 9.23 for Windows.exe -------------------------------------------------------------------------------- /software/GraphicsMagick-1.3.28-Q16-win64-dll.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giscafer/easyocr/HEAD/software/GraphicsMagick-1.3.28-Q16-win64-dll.exe -------------------------------------------------------------------------------- /software/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giscafer/easyocr/HEAD/software/README.md -------------------------------------------------------------------------------- /software/pdfinfo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giscafer/easyocr/HEAD/software/pdfinfo.exe -------------------------------------------------------------------------------- /test/ocr.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giscafer/easyocr/HEAD/test/ocr.test.js -------------------------------------------------------------------------------- /test/pdf.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giscafer/easyocr/HEAD/test/pdf.test.js --------------------------------------------------------------------------------