Welcome to Software Laboratory of Antillia.com. Future Windows and Linux Programming |
OZ++ Class Library |
Home | OZ++ Samples | OZ++ Class Tree | OZ++ Class List |
# Update and upgrade sudo apt-get update sudo apt-get upgrade # Update g++. We need the latest c++ compiler sudo apt-get install g++ # Install X11, Xt libray sudo apt-get install libx11-dev sudo apt-get install libxt-dev # Install OpenGL (Mesa) See : https://www.mesa3d.org/ and related library. # (See: The Easy Way to Install Mesa 17.0.2 on Ubuntu 16.04 LTS) sudo apt-get install mesa-common-dev sudo apt-get install freeglut3-dev sudo apt-get install libglew-dev # Install xpm and jpeg library sudo apt-get install libxpm-dev sudo apt-get install libjpeg-dev # Install video for linux which can be used in OpenCV VideoCapture. sudo apt-get install libv4l-dev |