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

Wie wird Code mit openCV compiliert und welche header werden benötigt

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

exports

export LD_LIBRARY_PATH=/usr/local/lib

includes und namespaces

#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;

Bauprobleme mit makefile

http://dev.widemeadows.de/2013/12/08/playerstage-unter-ubuntu-13-10/

c++ opencv

http://opencv-srf.blogspot.de/2010/09/opencv-basics.html openCV http://www.cplusplus.com/reference/thread/thread/

⚠️ **GitHub.com Fallback** ⚠️