/myCV

Recognising objects on a video

Primary LanguagePython

Test app of CV

The app should recognize objects on a video

Installation

  1. Install python 3.7 and pip

  2. Create environment

    $ python -m venv venv
  3. Activate environment

    in PowerShell:

    $ ./venv/Scripts/Activate.ps1

    in cmd:

    $ ./venv/Scripts/activate.bat

    in bash:

    $ source ./venv/bin/activate
  4. Install requirements

    $ pip install -r requirements.txt

How to run

  1. Put video file to ./data folder
  2. In main.py in string cap = cv.VideoCapture('data/video.mkv') change path to your file
  3. Activate environment
  4. run program
    $ python main.py