Featured image of post OpenCV: Instalación (v3.x)

OpenCV: Instalación (v3.x)

Receta básica para la instalación de las bibliotecas de OpenCV 3.x

Preparación

Suponiendo un sistema operativo derivado de Ubuntu/Debian, es necesario instalar los paquetes necesarios para compilar el OpenCV, para esto, se habre una consola y pegamos:

1
2
3
4
5
sudo apt-get update
sudo apt-get install build-essential cmake git libgtk2.0-dev           \
    pkg-config libavcodec-dev libavformat-dev libswscale-dev           \
    python-dev  python-numpy libtbb2 libtbb-dev libjpeg-dev libpng-dev \
    libtiff-dev libdc1394-22-dev

Compilación

Se baja el código y se compila:

1
2
3
4
5
6
7
8
9
cd ~
wget https://github.com/opencv/opencv/archive/3.4.3.tar.gz
tar -xzf 3.4.3.tar.gz
cd opencv-3.4.3/
mkdir build
cd build
cmake -D CMAKE_BUILD_TYPE=Release -D CMAKE_INSTALL_PREFIX=/usr/local ..
make -j8
sudo make install

Pruebas

antonio@mint:~$ python

1
2
3
4
>>> import cv2
>>> cv2.__version__
'3.4.3'
>>>

Si lo anterior arroja un error, quiere decir que no se instaló correctamente y hay que verificar los pasos anteriores.

Referencias

Creado con Hugo
Tema Stack diseñado por Jimmy