Changes between Version 8 and Version 9 of BluePrint/OCRIntegration


Ignore:
Timestamp:
01/28/13 18:50:26 (12 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BluePrint/OCRIntegration

    v8 v9  
    55If OCR module is not enabled, it can be enabled by un-commenting the ocr block in `models/000_config.py` in `eden` directory.
    66
    7 == Dependecies ==
     7== Dependencies ==
    88'''python modules'''
    991. python-lxml
     
    1616{{{
    1717apt-get install -y imagemagick
    18 apt-get install -y libleptonica-dev
     18# Old versions:
     19#apt-get install -y libleptonica-dev tesseract-ocr
     20wget http://www.leptonica.com/source/leptonica-1.69.tar.gz
     21tar zxvf leptonica-1.69.tar.gz
     22cd leptonica-1.69
     23./configure
     24make
     25make install
     26cd ..
    1927wget http://tesseract-ocr.googlecode.com/files/tesseract-ocr-3.02.02.tar.gz
     28tar zxvf tesseract-ocr-3.02.02.tar.gz
    2029cd tesseract-ocr
    2130./configure
    2231make
    2332make install
     33cd ..
    2434}}}
    2535== Configuration ==