openCV on pi - flashbac/esd_projekt GitHub Wiki
http://robertcastle.com/2014/02/installing-opencv-on-a-raspberry-pi/
anderes Bsp.: Github Project mit RPI-Cam
Bsp. mit g++ <m.c>-File ist der Code und main ist dann das fertig gelinkete Programm
g++ -Iusr/include/opencv2 m.c $(pkg-config opencv --libs) -o main
export LD_LIBRARY_PATH=/usr/local/lib
#include <opencv2/objdetect/objdetect.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <iostream>
#include <stdio.h>
using namespace std;
using namespace cv;
http://dev.widemeadows.de/2013/12/08/playerstage-unter-ubuntu-13-10/
http://opencv-srf.blogspot.de/2010/09/opencv-basics.html openCV http://www.cplusplus.com/reference/thread/thread/