Someone just literally provided me with a screenshot of a table, and I have to enter the information in MS-Excel. I was thinking of finding a way to extract text from this image and export it as a CSV.
I did come across the tesseract package, but it doesn't do a good job.
Is there a way to do this in R?
Example image:
Code I tried:
library(tidyverse)
library(tesseract)
eng = tesseract("eng")
text = tesseract::ocr("path/file_name.png", engine = eng)
cat(text)
