OpenCV auf dem EEE kompilieren PDF Print E-mail
User Rating: / 1
PoorBest 

Hier eine kurze Anleitung wie man die aktuelle OpenCV Bibliothek auf dem EEE kompiliert und installiert.
Ich benötige die aktuelle Version für meinYAWCG Projekt.

1. Sourcen besorgen

2. Entpacken

gunzip opencv-1.0.0.tar.gz
tar -xvf opencv-1.0.0.tar.gz

3. Konfigureiren und Installieren

./configure --prefix=/usr/local/opencv-1.0
make
make install
cd /usr/local/
ln -s opencv-1.0 opencv

4. LD

cd /etc/ld.so.conf.d/
touch opencv
echo /usr/local/opencv > opencv
ldconfig -v

5. Testen

cd /usr/local/src/opencv-1.0.0
make test
Last Updated on Friday, 25 July 2008 17:06