openmv/usr
Kwabena W. Agyeman 98f4dde21f Add new morph function.
The morph function lets you convolve the image with a kernel. It's
decently fast right now. But, in the future we'll have to optimize it by
a lot (unrolling loops, using SIMD instructions, etc.).

Anyway, along with morph I added an edge detection test script showing
how you can use a high pass filter on an image to get all the edges in
it. This is not as good as canny edge dection... but, it's about the
same and fast enough.

We'll need a Hough Transform system in the future to make edge dection
useful. Not sure how that will be implemented... so, that's going to be
far away for now.
2016-02-29 18:04:45 -05:00
..
data/haar Add profile face XML cascade 2016-02-28 04:09:39 +02:00
examples Add new morph function. 2016-02-29 18:04:45 -05:00
tests Dilate and errode working. 2016-02-28 16:27:49 -05:00
logo.png Add About Dialog. 2015-09-25 23:53:08 +02:00
openmv-cascade.py Fix c header cascade 2015-07-09 03:34:18 +02:00
openmv-fb.py Update OpenMV module/ide 2014-06-25 19:52:08 +02:00
openmv-ide.glade Add enable/disable JPEG to preferences dialog. 2016-02-18 05:10:10 +02:00
openmv-ide.py Fix Enable/Disable JPEG 2016-02-19 18:10:04 +02:00
openmv-ide.spec Add About Dialog. 2015-09-25 23:53:08 +02:00
openmv.py Fix ROI size sent from IDE. 2016-02-26 03:03:29 +02:00
pinout.png Add pinout dialog to Help menu. 2015-10-01 23:51:00 +02:00
pydfu.py Use python2 to run openmv.py, pydfu.py and openmv-ide.py 2015-10-03 23:53:03 +02:00
README.md python-vte is needed (at least for ubuntu 14.04) for openmv-ide.py 2014-10-15 12:00:22 -07:00

Installing the Python OpenMV-IDE

Install libusb

For Linux

$ sudo apt-get install libusb-1.0-0 python-vte

For Everything else

Download and install: http://www.libusb.org/

Install PyUSB

$ sudo pip install --pre pyusb

Use the --pre flag if you are getting the following error. It tells pip to accept pre-release (alpha, beta) versions.

Could not find a version that satisfies the requirement pyusb (from versions: 1.0.0a2, 1.0.0a2, 1.0.0a3, 1.0.0a3, 1.0.0b1)

Install pySerial

$ sudo pip install pySerial