Work developed by José Rosa and Ricardo Silva as 2nd Assigment of Computer Vision - MEE - ESTG.
Example Video: https://youtu.be/qd7n-2v0ltw
English Report: docs/CV_Assignment2_EN.pdf
Run these scripts on a virtual environment [Official Python Guide Here]
- If you don't have Python 3.7 installed we recomend that you install it on your machine! Don't add it to PATH if you will not use it as you main Python Interpreter.
- You can use other version of the Python Interpreter but you may experience compatability issues. If so in the rest of this guide where we refer as Python 3.7 you should refer to your version of Python.
- Go to the project folder, open CMD/Terminal instance there and run:
Example:
[PATH TO PYTHON 3.7 EXECUTABLE] -m venv venv
This will create a virtual environment with Python Interpreter 3.7 in the current directory.C:\Users\[USER]\AppData\Local\Programs\Python\Python37\python.exe -m venv venv
- Run the following command on the console to activate the Virtual Environment:
venv\Scripts\activate
- Run and explore these examples!
- When running the functions on this repository the required packages should be installed automatically. You can install them manually by running the command
pip install -r requirements.txt
- When running the functions on this repository the required packages should be installed automatically. You can install them manually by running the command
Feel free to contribute, submit sugestions and error reports.
MIT LICENSED: It permits users to do anything with a given project as long as they credit the developer and don’t hold him or her liable for the project’s use.