Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 1.04 KB

File metadata and controls

34 lines (28 loc) · 1.04 KB

OpenCV4withPython

wakatime

Learning OpenCV 4 with Python. Introduction to Computer Vision.

Installing Packages

Execute the following command in a terminal to install the packages to get started.

$ python --version
$ python -m pip install --upgrade pip
$ python -m pip install numpy
$ python -m pip install opencv-contrib-python
$ python -m pip install matplotlib

Installing Jupyter Notebook with pip

$ python -m pip install jupyter

Installing Packages from requirements.txt

$ python -m pip install -r requirements.txt

Hello, OpenCV

  1. Navigate to the corresponding folder
$ cd ./ch_01_hello_opencv/test_installation
$ python test_opencv_installation.py