From 3ab0eaa2bd62ee4be0a0cbcd2bc1d184bca8e981 Mon Sep 17 00:00:00 2001 From: Matthew Hill Date: Tue, 6 May 2014 18:16:00 -0500 Subject: [PATCH] Updated Readme w/ links to compilation instructions --- README.md | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 37ddf87..c7ff350 100644 --- a/README.md +++ b/README.md @@ -105,17 +105,12 @@ 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. -Update the src/CMakeLists.txt file in the OpenALPR project. Update the following lines to match the directories of your libraries on your system: +Please follow these detailed compilation guides for your respective operating system: - - SET(OpenCV_DIR "../libraries/opencv/") - - SET(Tesseract_DIR "/home/mhill/projects/alpr/libraries/tesseract-ocr") +* [Windows] (https://github.com/openalpr/openalpr/wiki/Compilation-instructions-(Windows)) +* [Ubuntu Linux] (https://github.com/openalpr/openalpr/wiki/Compilation-instructions-(Ubuntu-Linux)) -Finally, in the src directory, execute the following commands: - - - 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-static.a* and *libopenalpr.so* that can be linked into your project. Questions