Add extended user info to Tesseract parsing

This commit is contained in:
Blizzard Finnegan 2023-02-24 16:16:50 -05:00
parent 798884102c
commit 99569154e9
No known key found for this signature in database
GPG key ID: DE547EDF547DDA49

View file

@ -81,6 +81,8 @@ public class TesseractFacade
output = output / 10; output = output / 10;
if(output >= 200) if(output >= 200)
ErrorLogging.logError("OCR WARNING - OCR output is too high for DUT, potential misread."); ErrorLogging.logError("OCR WARNING - OCR output is too high for DUT, potential misread.");
else
ErrorLogging.logError("OCR output successfully adjusted. Disregard warning.");
} }
if(output <= -10) if(output <= -10)
ErrorLogging.logError("OCR ERROR!!! - OCR output is too low for DUT, potential misread."); ErrorLogging.logError("OCR ERROR!!! - OCR output is too low for DUT, potential misread.");