Skip to content

Instantly share code, notes, and snippets.

@mdozmorov
Created October 1, 2019 01:22
Show Gist options
  • Save mdozmorov/eb9f8fbca57888fa6481be3d07441827 to your computer and use it in GitHub Desktop.
Save mdozmorov/eb9f8fbca57888fa6481be3d07441827 to your computer and use it in GitHub Desktop.
# Tesseract Intro: https://cran.r-project.org/web/packages/tesseract/vignettes/intro.html
# Image source: https://twitter.com/davidsuter_epfl/status/1141959559654846464?s=20
library(tesseract)
eng <- tesseract("eng")
text <- tesseract::ocr("https://pbs.twimg.com/media/D9kOESnW4AEs90l?format=jpg&name=900x900", engine = eng)
cat(text)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment