Skip to content

Instantly share code, notes, and snippets.

@famuvie
Created January 31, 2018 10:05
Show Gist options
  • Save famuvie/a821df0d57a7fcad70810b3195b60cec to your computer and use it in GitHub Desktop.
Save famuvie/a821df0d57a7fcad70810b3195b60cec to your computer and use it in GitHub Desktop.
OCR from R
library(magick)
library(magrittr)
url <- "https://pbs.twimg.com/media/DU1X5-fUMAE1CAX.jpg"
text <-
image_read(url) %>%
image_resize("2000") %>%
image_convert(colorspace = 'gray') %>%
image_trim() %>%
image_ocr()
cat(text)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment