Repository for code and reports for CSE 408/598 projects.
To run the project executables, make sure [Python 2.7]() and OpenCV are installed.
$ brew doctor
$ brew install python
$ brew install homebrew/science/opencv
$ sudo apt-get install python opencv
Follow the directions in the OpenCV documentation.
To make sure your installation has worked, open your terminal or powershell application and do the following commands:
$ python
>>> import cv
>>> import numpy
You should not see any warnings from the above commands. If you do see any warnings, contact Jake Pruitt (@jakepruitt) at (219) 921-4832, and I'll do my best to make sure it works for you.
Tests use pytest for all tests. In order to run tests, first install pytest:
$ pip install pytest
Then, to run all of the tests, run the following command:
$ py.test