Skip to content
This repository has been archived by the owner on Sep 29, 2022. It is now read-only.

Latest commit

 

History

History
33 lines (28 loc) · 1.73 KB

README.md

File metadata and controls

33 lines (28 loc) · 1.73 KB

Computer Vision

Introduction

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

Recomendations

Run these scripts on a virtual environment [Official Python Guide Here]
  1. 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.
  2. Go to the project folder, open CMD/Terminal instance there and run:
    [PATH TO PYTHON 3.7 EXECUTABLE] -m venv venv
    Example:
    C:\Users\[USER]\AppData\Local\Programs\Python\Python37\python.exe -m venv venv
    This will create a virtual environment with Python Interpreter 3.7 in the current directory.
  3. Run the following command on the console to activate the Virtual Environment:
    venv\Scripts\activate
  4. 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

Contribute

Feel free to contribute, submit sugestions and error reports.

Licence

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.