Skip to content

Instantly share code, notes, and snippets.

@arnabdas
Created July 17, 2020 07:51
Show Gist options
  • Save arnabdas/75c4fb6cbc541c8b4503ada6b71dc0ac to your computer and use it in GitHub Desktop.
Save arnabdas/75c4fb6cbc541c8b4503ada6b71dc0ac to your computer and use it in GitHub Desktop.
Install OpenCV on Ubuntu 18.04
apt-get install python3-pip python3-dev -y
apt install libopencv-dev
pip3 install numpy # multi-dimensional arrays
pip3 install matplotlib # plotting points in graphs / histogram
pip3 install scipy # scietific calculations
pip3 install scikit-learn # machine learning, like clustering, vector quantization, classification models
pip3 install -U scikit-image # for image processing
pip3 install opencv-python # computer vision library
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment