Implement OCR
This commit is contained in:
parent
c6c9337e8b
commit
e36007ef50
14
main.cjs
14
main.cjs
@ -210,13 +210,13 @@ function getMatchingPhrase(inputString, targetCharacter) {
|
||||
console.log(message.attachments);
|
||||
message.attachments.forEach(i => {
|
||||
if (i.contentType.includes("image")) {
|
||||
(async () => {
|
||||
const worker = await createWorker('eng');
|
||||
const ret = await worker.recognize(i.proxyURL);
|
||||
console.log("OCR Results: " + ret.data.text);
|
||||
checkString = ret.data.text;
|
||||
await worker.terminate();
|
||||
})();
|
||||
//(async () => {
|
||||
const worker = createWorker('eng');
|
||||
const ret = worker.recognize(i.proxyURL);
|
||||
console.log("OCR Results: " + ret.data.text);
|
||||
checkString = ret.data.text;
|
||||
worker.terminate();
|
||||
//})();
|
||||
console.log("Checking OCR contents...");
|
||||
if (checkLoop(message, checkString)) {
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user