Optical character recognition

From OLPC
Revision as of 07:42, 26 June 2008 by 98.216.106.134 (talk) (Resources: +tesseract-ocr link)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
This article is a stub. You can help the OLPC project by expanding it.
See Scanning for the OCR of books to create OLPC content.

Optical character recognition (OCR) is the conversion of photographs of text, into editable text.

This page was created mostly in support of Test automation.

Running OCR on an XO

Install gocr.

yum install gocr

Next, get a pnm image of some page of text.

One approach is to take a screenshot.

yum install ImageMagick

Use Record to take a picture of some text, and show it full screen. Then in Terminal,

sleep 5; import -window root pageimage.png

and switch back to Record while the sleep is happening, and wait for the screenshot to be taken.

Convert the image to text.

gocr pageimage.pnm

Resources