Skip to content

raven4444/traffic-sign-detection

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

51 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

traffic-sign-detection

Real-time traffic sign detection using Gielis curves

System & dependencies

System requirements:

  • Ubuntu 14.04
  • CMake 2.8.12
  • Eigen 3.2.0
  • OpenCV 2.4.8
  • GTest 1.6.1

CMake Library

sudo apt-get install cmake

The version available in Ubuntu 14.04 repositories is CMake 2.8.12

Eigen Library

sudo apt-get install libeigen3-dev

The version available in Ubuntu 14.04 repositories is Eigen 3.2.0

OpenCV Library

sudo apt-get install libopencv-dev

The version available in Ubuntu 14.04 repositories is OpenCV 2.4.8

Google tests

sudo apt-get install libgtest-dev

However, this command only download the source that you need to compile.

sudo cmake CMakeLists.txt
sudo make
sudo cp *.a /usr/lib

The version available in Ubuntu 14.04 repositories is GTest 1.6.1

Compilation

  • Create a binary folder:

mkdir bin

  • Move to the created folder:

cd bin

  • Create the MakeFile via cmake:

cmake ../src

  • Compile the code to generate the executable:

make or make -j n where n is the number of cores to use for the compilation

  • In order to run the code:

./main ../test-images/different0035.jpg

About

Real-time traffic sign detection using Gielis curves

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 87.4%
  • CMake 12.6%