https://github.com/virtuald/frc-imageprocessing-workshop-2016
FRC Image processing workshop, 2016 edition
https://github.com/virtuald/frc-imageprocessing-workshop-2016
Last synced: 2 months ago
JSON representation
FRC Image processing workshop, 2016 edition
- Host: GitHub
- URL: https://github.com/virtuald/frc-imageprocessing-workshop-2016
- Owner: virtuald
- Created: 2016-09-06T00:29:12.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2017-12-29T19:44:13.000Z (over 8 years ago)
- Last Synced: 2025-03-21T15:43:27.854Z (about 1 year ago)
- Language: Jupyter Notebook
- Size: 1.51 MB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Image Processing using OpenCV + Python
======================================
This is a repository with content from a presentation given at NE FIRST
University Day on September 10, 2016.
[](http://mybinder.org/repo/virtuald/frc-imageprocessing-workshop-2016)
To launch the interactive environment using a web browser, click the
'launch binder' button above. You can view the slides in that environment, just
click "File", "Open", and select "slides.ipynb" from the list.
If you just want to view the slides, download and open slides.pdf
Running this locally
====================
Windows
-------
* Install Python 3.5 (http://www.python.org/downloads)
* Install jupyter, matplotlib, and OpenCV:
```sh
py -3 -m pip install jupyter matplotlib opencv-python
```
To actually launch the environment, run this command from inside the repository
directory:
```sh
py -3 -m jupyter notebook
```
OSX
---
* Install [Python 3.4](https://www.python.org/downloads/release/python-344/) (not 3.5!)
* Install jupyter, matplotlib, and OpenCV:
```sh
pip3 install jupyter matplotlib opencv-python
```
To actually launch the environment, run this command from inside the repository
directory:
```sh
jupyter notebook
```
Slideshow
---------
To display the slideshow interactively, you'll need to install
[RISE](https://github.com/damianavila/RISE).
Author
======
Dustin Spicuzza (dustin@virtualroadside.com)