Thanks for making this! This is exactly what I have been trying to do for the past week!
The only issue is that when running Mjpg-Streamer with:
Code:
export LD_LIBRARY_PATH=.
./mjpg_streamer -i "input_opencv.so --filter cvfilter_py.so --fargs ~/mjpg-streamer/mjpg-streamer-experimental/plugins/input_opencv/filters/cvfilter_py/example_filter.py" -o "output_http.so -w ./www"
On a Raspberry Pi 2 with OpenCV 3.1.0 and Numpy 1.10, I get the error
Code:
ImportError: numpy.core.multiarray failed to import
Since Mjpg-streamer works fine with the input_uvc plugin and numpy.core.multiarray imports fine in python 2 and 3, I thought I might be using the wrong version of Numpy. So I tried it with Numpy 1.7, 1.9, and 1.10 and even tried a fresh install of OpenCV and Numpy on another SD card, but I still get the same error.
Is there something I may have missed?