我正在尝试在我的组件中使用Tesseract在文件上执行ocr。
.ts :
import * as Tesseract from 'tesseract.js';
fileToUpload: File = null;
handleFileInput(files: FileList) {
this.fileToUpload = files.item(0);
}
imageOcr() {
Tesseract.recognize(this.fileToUpload)
.progress(message => console.log(message))
.catch(err => console.error(err))
.then(res => console.log(res))
.finally(resultOrError => console.log(resultOrError));
}
.html
<div>
<h6>Local Image OCR</h6>
<input type="file" accept=".jpg,.png,.jpeg,.webp" (change)="handleFileInput($event.target.files)">
<button (click)="imageOcr()">click</button>
</div>
我关注了this, 但是此错误显示
"blob:http://localhost:4200/65999042-8757-4264-b92d-ed5e0a0e4c27:1 Uncaught DOMException: Failed to execute 'importScripts' on 'WorkerGlobalScope': The script at 'http://localhost:4200/dist/worker.dev.js?nocache=qf0eq67rus' failed to load.
at blob:http://localhost:4200/65999042-8757-4264-b92d-ed5e0a0e4c27:1:1"
我应该怎么做或怎么做?
答案 0 :(得分:0)
如果其他人遇到此问题,这是我找到的解决方案:tesseract打字稿包装器。
答案 1 :(得分:0)
无需使用其他打字稿包装依赖项就可以使用它。
您需要安装实际的javascript模块:
npm install tesseract.js --save
还安装@types声明:
npm install @types/tesseract.js --save
最后进行以下导入:
import * as Tesseract from 'tesseract.js'
像这样使用它
let filename = 'assets/img/abcdefg.jpg'
Tesseract.recognize(filename)
.progress(function (p) { console.log('progress', p) })
.catch(err => console.error(err))
.then(function (result) {
console.log("result ======<<<<>>>>>");
console.log(result.text)
})