Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Note

You may get the following error:

Code Block
./vidio/vidio.cc:484 error: cannot convert 'ByteIOContext**' to 'ByteIOContext*' for argument '1' to 'int url_fclose(ByteIOContext*)'

To fix this, change Line 484 from url_fclose(&oc->pb); to url_fclose(oc->pb);

2. Installing Tesseract

  • used SVN to checkout latest version of tesseract (make sure SVN is installed)
  • installed Make sure to have SVN installed prior to this step.
  • Installed tesseract according to instructions on OCRopus' install guide (http://sites.google.com/site/ocropus/install-0-3)compiled and installed fine.

{{
svn co http://tesseract-ocr.googlecode.com/svn/trunk/ tesseract-ocr
cd tesseract-ocr
./configure
make
sudo make install
}}

Installing OCRopus

  • ran ./configure --without-fst --without-leptonica --without-SDL – OK
  • ran make – ERROR

...