Updated readme

This commit is contained in:
Matt Hill
2014-01-08 22:45:20 -06:00
parent 3eefb08d12
commit b759db9717

View File

@@ -100,12 +100,14 @@ OpenALPR requires the following additional libraries:
After cloning this GitHub repository, you should download and extract Tesseract and OpenCV source code into their own directories. Compile both libraries. After cloning this GitHub repository, you should download and extract Tesseract and OpenCV source code into their own directories. Compile both libraries.
Update the src/CMakeLists.txt file in the OpenALPR project. Update the following lines to match the directories of your libraries on your system: Update the src/CMakeLists.txt file in the OpenALPR project. Update the following lines to match the directories of your libraries on your system:
- SET(OpenCV_DIR "../libraries/opencv/")
- SET(Tesseract_DIR "/home/mhill/projects/alpr/libraries/tesseract-ocr") * SET(OpenCV_DIR "../libraries/opencv/")
* SET(Tesseract_DIR "/home/mhill/projects/alpr/libraries/tesseract-ocr")
Finally, in the src directory, execute the following commands: Finally, in the src directory, execute the following commands:
- cmake ./
- make * cmake ./
* make
If all went well, there should be an executable named *alpr* along with *libopenalpr.a* that can be linked into your project. If all went well, there should be an executable named *alpr* along with *libopenalpr.a* that can be linked into your project.