diff --git a/test_image.py b/test_image.py new file mode 100644 index 0000000..a480c7b --- /dev/null +++ b/test_image.py @@ -0,0 +1,7 @@ +import cv2 +import pytesseract + +def extract_image_content(path): + pytesseract.pytesseract.tesseract_cmd = r'C:\Program Files\Tesseract-OCR\tesseract.exe' + img = cv2.imread(path) + return pytesseract.image_to_string(img) \ No newline at end of file