Skip to content

Instantly share code, notes, and snippets.

@vickyg3
Created August 8, 2011 18:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vickyg3/1132347 to your computer and use it in GitHub Desktop.
Save vickyg3/1132347 to your computer and use it in GitHub Desktop.
PNG Conversion and OCR
#! /bin/bash
pngtopnm $1 |
ocrad --format=utf8 --filter=numbers |
sed -r -e 's/x/\*/' -e 's/÷/\//' -e 's/\_([0-9]+)/int\(math\.sqrt\(\1\)\)/' |
tr -d '\n' |
tr -d ' '
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment