Skip to content

Material URJC Robotics Software Engineering Degree - Computer Vision. This project contains code examples for Computer Vision using C++ & OpenCV.

License

Notifications You must be signed in to change notification settings

juan-simo/vision

 
 

Repository files navigation

Computer Vision Examples

This project contains code examples created in Visual Studio Code for Computer Vision using C++ & OpenCV & Point Cloud Library (PCL). These examples are created for the Computer Vision Subject of Robotics Software Engineering Degree at URJC.

Installation

Probably OpenCV is installed, but it's a good practice to install it as follows.

Open an Ubuntu terminal and follow the next steps:

  1. Install dependencies:
sudo apt install build-essential cmake git pkg-config libgtk-3-dev \
    libavcodec-dev libavformat-dev libswscale-dev libv4l-dev \
    libxvidcore-dev libx264-dev libjpeg-dev libpng-dev libtiff-dev \
    gfortran openexr libatlas-base-dev python3-dev python3-numpy \
    libtbb2 libtbb-dev libdc1394-22-dev
  1. Clone OpenCV and Contrib repositories:
mkdir ~/opencv_build && cd ~/opencv_build
git clone https://github.com/opencv/opencv.git
git clone https://github.com/opencv/opencv_contrib.git
  1. Create temporary build directory:
cd ~/opencv_build/opencv
mkdir build
cd build
  1. Setup OpenCV:
cmake -D CMAKE_BUILD_TYPE=RELEASE \
    -D CMAKE_INSTALL_PREFIX=/usr/local \
    -D INSTALL_C_EXAMPLES=ON \
    -D INSTALL_PYTHON_EXAMPLES=ON \
    -D OPENCV_GENERATE_PKGCONFIG=ON \
    -D OPENCV_EXTRA_MODULES_PATH=~/opencv_build/opencv_contrib/modules \
    -D BUILD_EXAMPLES=ON ..\
    -D OPENCV_ENABLE_NONFREE=ON
  1. Compilation process:
make -j8
  1. Installation process:
sudo make install
  1. Import OpenCV package:
pkg-config opencv4 --cflags --libs
  1. Add in ~/.bashrc:
echo 'export LD_LIBRARY_PATH=$LS_LIBRARY_PATH:/usr/local/lib/' >> ~/.bashrc
  1. Load the libraries into the current shell:
source ~/.bashrc

Compiling PCL from source

The best way to be updated, is to install PCL compiling from source: https://pcl.readthedocs.io/projects/tutorials/en/latest/compiling_pcl_posix.html

It fixs some problems when you try to use Ubuntu 22.04, VTK 9.1 and PCL 1.12.1

  1. Clone PCL repository:
mkdir ~/pcl_build && cd ~/pcl_build
git clone --recursive https://github.com/PointCloudLibrary/pcl.git
  1. Create temporary build directory:
cd ~/pcl_build/pcl
mkdir build
cd build
  1. Run the CMake build system using the default options:
cmake ..
  1. Compilation process:
make -j2
  1. Installation process:
sudo make -j2 install

About

This is a project made by José Miguel Guerrero, Associate Professor at Universidad Rey Juan Carlos. Copyright © 2021.

Twitter

License

Shield:

CC BY-SA 4.0

This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.

CC BY-SA 4.0

About

Material URJC Robotics Software Engineering Degree - Computer Vision. This project contains code examples for Computer Vision using C++ & OpenCV.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 95.0%
  • Makefile 3.6%
  • CMake 1.4%