Implement OCR
This commit is contained in:
parent
e36007ef50
commit
4aa533ad71
14
main.cjs
14
main.cjs
@ -210,13 +210,12 @@ function getMatchingPhrase(inputString, targetCharacter) {
|
|||||||
console.log(message.attachments);
|
console.log(message.attachments);
|
||||||
message.attachments.forEach(i => {
|
message.attachments.forEach(i => {
|
||||||
if (i.contentType.includes("image")) {
|
if (i.contentType.includes("image")) {
|
||||||
//(async () => {
|
(async () => {
|
||||||
const worker = createWorker('eng');
|
const worker = await createWorker('eng');
|
||||||
const ret = worker.recognize(i.proxyURL);
|
const ret = await worker.recognize(i.proxyURL);
|
||||||
console.log("OCR Results: " + ret.data.text);
|
console.log("OCR Results: " + ret.data.text);
|
||||||
checkString = ret.data.text;
|
checkString = ret.data.text;
|
||||||
worker.terminate();
|
await worker.terminate();
|
||||||
//})();
|
|
||||||
console.log("Checking OCR contents...");
|
console.log("Checking OCR contents...");
|
||||||
if (checkLoop(message, checkString)) {
|
if (checkLoop(message, checkString)) {
|
||||||
return;
|
return;
|
||||||
@ -224,6 +223,7 @@ function getMatchingPhrase(inputString, targetCharacter) {
|
|||||||
checkString = checkString.replace(/[^a-zA-Z0-9]/g, '');
|
checkString = checkString.replace(/[^a-zA-Z0-9]/g, '');
|
||||||
checkLoop(message, checkString);
|
checkLoop(message, checkString);
|
||||||
}
|
}
|
||||||
|
})();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
/*
|
/*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user