123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- /**
- * @author n1474335 [n1474335@gmail.com]
- * @author mshwed [m@ttshwed.com]
- * @copyright Crown Copyright 2019
- * @license Apache-2.0
- */
- import Operation from "../Operation.mjs";
- import OperationError from "../errors/OperationError.mjs";
- import { isImage } from "../lib/FileType.mjs";
- import { toBase64 } from "../lib/Base64.mjs";
- import { isWorkerEnvironment } from "../Utils.mjs";
- import Tesseract from "tesseract.js";
- const { TesseractWorker } = Tesseract;
- import process from "process";
- /**
- * Optical Character Recognition operation
- */
- class OpticalCharacterRecognition extends Operation {
- /**
- * OpticalCharacterRecognition constructor
- */
- constructor() {
- super();
- this.name = "Optical Character Recognition";
- this.module = "OCR";
- this.description = "Optical character recognition or optical character reader (OCR) is the mechanical or electronic conversion of images of typed, handwritten or printed text into machine-encoded text.<br><br>Supported image formats: png, jpg, bmp, pbm.";
- this.infoURL = "https://wikipedia.org/wiki/Optical_character_recognition";
- this.inputType = "ArrayBuffer";
- this.outputType = "string";
- this.args = [
- {
- name: "Show confidence",
- type: "boolean",
- value: true
- }
- ];
- }
- /**
- * @param {ArrayBuffer} input
- * @param {Object[]} args
- * @returns {string}
- */
- async run(input, args) {
- const [showConfidence] = args;
- if (!isWorkerEnvironment()) throw OperationError("This operation only works in a browser");
- const type = isImage(input);
- if (!type) {
- throw new OperationError("Invalid File Type");
- }
- const assetDir = isWorkerEnvironment() ? `${self.docURL}/assets/` : `${process.cwd()}/src/core/vendor/`;
- try {
- const image = `data:${type};base64,${toBase64(input)}`;
- const worker = new TesseractWorker({
- workerPath: `${assetDir}tesseract/worker.min.js`,
- langPath: `${assetDir}tesseract/lang-data`,
- corePath: `${assetDir}tesseract/tesseract-core.wasm.js`,
- });
- const result = await worker.recognize(image)
- .progress(progress => {
- if (isWorkerEnvironment()) {
- self.sendStatusMessage(`Status: ${progress.status} - ${(parseFloat(progress.progress)*100).toFixed(2)}%`);
- }
- });
- if (showConfidence) {
- return `Confidence: ${result.confidence}%\n\n${result.text}`;
- } else {
- return result.text;
- }
- } catch (err) {
- throw new OperationError(`Error performing OCR on image. (${err})`);
- }
- }
- }
- export default OpticalCharacterRecognition;
|