Changes between Version 8 and Version 9 of BluePrint/OCRIntegration
- Timestamp:
- 01/28/13 18:50:26 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BluePrint/OCRIntegration
v8 v9 5 5 If OCR module is not enabled, it can be enabled by un-commenting the ocr block in `models/000_config.py` in `eden` directory. 6 6 7 == Depende cies ==7 == Dependencies == 8 8 '''python modules''' 9 9 1. python-lxml … … 16 16 {{{ 17 17 apt-get install -y imagemagick 18 apt-get install -y libleptonica-dev 18 # Old versions: 19 #apt-get install -y libleptonica-dev tesseract-ocr 20 wget http://www.leptonica.com/source/leptonica-1.69.tar.gz 21 tar zxvf leptonica-1.69.tar.gz 22 cd leptonica-1.69 23 ./configure 24 make 25 make install 26 cd .. 19 27 wget http://tesseract-ocr.googlecode.com/files/tesseract-ocr-3.02.02.tar.gz 28 tar zxvf tesseract-ocr-3.02.02.tar.gz 20 29 cd tesseract-ocr 21 30 ./configure 22 31 make 23 32 make install 33 cd .. 24 34 }}} 25 35 == Configuration ==