VAT  3.0
Video Analysis Tool
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Pages
Setting Work Environment

The following steps were made to compile the project under Ubuntu 14.04 system.

Installing Qt Creator

Installing OpenCV 3.0 with contrib modules

1 $ sudo apt-get install -y build-essential cmake libv4l-dev pkg-config libgtk2.0-dev \
2  libtiff5-dev libjasper-dev libavformat-dev libswscale-dev \
3  libavcodec-dev libjpeg8-dev git python-dev python-numpy \
4  libtbb2 libtbb-dev libpng-dev libdc1394-22-dev
1 $ cd
2 $ mkdir -p OpenCV-3.0.0/OpenCV-3.0.0-master
3 $ cd OpenCV-3.0.0/OpenCV-3.0.0-master
4 $ git clone https://github.com/Itseez/opencv.git
1 $ cd ~/OpenCV-3.0.0
2 $ mkdir OpenCV-3.0.0-contrib
3 $ cd OpenCV-3.0.0-contrib
4 $ git clone https://github.com/Itseez/opencv_contrib.git
1 $ cd ~/OpenCV-3.0.0/OpenCV-3.0.0-master/opencv
2 $ mkdir build && cd build
3 $ cmake -D CMAKE_BUILD_TYPE=Release -D OPENCV_EXTRA_MODULES_PATH=/home/${USER}/OpenCV-3.0.0/OpenCV-3.0.0-contrib/opencv_contrib/modules -D CMAKE_INSTALL_PREFIX=/usr/local ..
4 $ make -j$(nproc)
5 $ sudo make install
6 $ sudo ldconfig
1 $ pkg-config --cflags --libs opencv

Compiling the project:

Enable Auto Documentation In Qt with Doxygen