Implement OCR

This commit is contained in:
Chloe Fontenot 🏳️‍⚧️ 2024-08-09 23:18:30 -05:00
parent e36007ef50
commit 4aa533ad71

View File

@ -210,13 +210,12 @@ function getMatchingPhrase(inputString, targetCharacter) {
console.log(message.attachments);
message.attachments.forEach(i => {
if (i.contentType.includes("image")) {
//(async () => {
const worker = createWorker('eng');
const ret = worker.recognize(i.proxyURL);
(async () => {
const worker = await createWorker('eng');
const ret = await worker.recognize(i.proxyURL);
console.log("OCR Results: " + ret.data.text);
checkString = ret.data.text;
worker.terminate();
//})();
await worker.terminate();
console.log("Checking OCR contents...");
if (checkLoop(message, checkString)) {
return;
@ -224,6 +223,7 @@ function getMatchingPhrase(inputString, targetCharacter) {
checkString = checkString.replace(/[^a-zA-Z0-9]/g, '');
checkLoop(message, checkString);
}
})();
});
}
/*