https://github.com/cgtuebingen/robust-vmm-guiding
Raw File
Tip revision: c46fae290f94970843fcafcb4764d07d28fa21f5 authored by Lukas Ruppert on 12 July 2023, 09:08:13 UTC
updated link to university webpage.
Tip revision: c46fae2
install_prerequisites_ubuntu.sh
#!/bin/bash

# update repository cache
sudo apt-get update

# core build environment
sudo apt-get install -y build-essential scons
# image libraries
sudo apt-get install -y libpng-dev libjpeg-dev libilmbase-dev libopenexr-dev
# math libraries
sudo apt-get install -y libeigen3-dev libfftw3-dev
# boost
sudo apt-get install -y libboost-all-dev
# xml library
sudo apt-get install -y libxerces-c-dev
# regexp library
sudo apt-get install -y libpcrecpp0v5

## GUI stuff - not really needed to reproduce the results
# graphics libraries
sudo apt-get install -y libxxf86vm-dev libglew-dev
# qt
sudo apt-get install -y qt5-default qt5-qmake libqt5xmlpatterns5-dev

## utilities
sudo apt-get install -y wget unzip

## python 3 and modules required for reproduction
sudo apt-get install -y python3 python3-pip
sudo -H python3 -m pip install --upgrade pip
sudo -H python3 -m pip install numpy OpenEXR Imath
back to top