Install system dependencies:
- Note I have a lot of c libraries already installed from Python development
- cmake
- leptonica
Dir setup:
mkdir ~/src
mkdir ~/src/hackmizzou
cd ~/src/hackmizzou
``
Get code:
``sh
git clone https://code.google.com/p/tesseract-ocr/
git clone https://github.com/Itseez/opencv.git
git clone https://github.com/openalpr/openalpr.gitCompile code
tesseract-ocr
cd tesseract-ocr
./autogen.sh
./configure
make
make install # this may not be needed.opencv
cd ~/src/hackmizzou/opencv
cmake
make
make installModify the openalpr CMakeLists.txt to point to the two made projects
cd ~/src/hackmizzou/openalpr/src
cmake
make
make install # no idea here this a guess