Created
July 17, 2020 07:51
-
-
Save arnabdas/75c4fb6cbc541c8b4503ada6b71dc0ac to your computer and use it in GitHub Desktop.
Install OpenCV on Ubuntu 18.04
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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