powered by
Extract text from an image using the tesseract package.
image_ocr(image, language = "eng", ...)
magick image object returned by image_read() or image_graph()
image_read()
image_graph()
passed to tesseract. To install additional languages see instructions in tesseract_download().
additional parameters passed to tesseract
To use this function you need to tesseract first:
install.packages("tesseract")
Best results are obtained if you set the correct language in tesseract. To install additional languages see instructions in tesseract_download().
Other image: analysis, animation, attributes, color, composite, device, editing, effects, index, painting, transform
analysis
animation
attributes
color
composite
device
editing
effects
index
painting
transform
# NOT RUN { if(require("tesseract")){ img <- image_read("http://jeroen.github.io/images/testocr.png") image_ocr(img) } # }
Run the code above in your browser using DataLab