aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorN.N. <sevyves@users.sourceforge.net>2009-08-23 15:16:30 +0000
committerN.N. <sevyves@users.sourceforge.net>2009-08-23 15:16:30 +0000
commit9127e62865f6b178e0a8d2a570d425e0e2058c5b (patch)
tree9a51309e386b5b9c6313c3db650c878b352cf266
parent9950bab479fabbef688b3b8d094ac28565622e4a (diff)
basic INSTALL instructions
svn path=/trunk/externals/pdp_opencv/; revision=12039
-rw-r--r--INSTALL51
1 files changed, 51 insertions, 0 deletions
diff --git a/INSTALL b/INSTALL
new file mode 100644
index 0000000..c715380
--- /dev/null
+++ b/INSTALL
@@ -0,0 +1,51 @@
+GNU/Linux
+
+(actually only tested in GNU/Linux Ubuntu Gutsy)
+
+unpack it ::
+
+cd into the library folder ::
+
+cd pix_opencv
+
+or
+
+cd pdp_opencv
+
+edit the Makefile to fit your system and sources folders:
+
+for pix_opencv edit the Makefile and change the values for PD_DIR and GEM_DIR variables
+
+for pix_opencv edit the Makefile and change the values for PD_DIR and PDP_DIR variables
+
+then, compile it ::
+
+make clean
+make
+
+and copy the .pd_linux to your externals folder ::
+
+cp *.pd_linux /usr/local/lib/pd/extra/
+
+MAC OSX (macintel)
+
+(This is only for pix_opencv Actually still there isn’t a MACOSX makefile for pdp_opencv.)
+
+cd pix_opencv
+
+Overwrite the Makefile with this one : Makefile.darwin
+
+edit the Makefile and change the values for PD_DIR and GEM_DIR variables
+and edit this lines : OPENCV_CFLAGS and OPENCV_LIBS
+Put something like that -I/opt/local/var/macports/software/opencv/1.0.0_0/opt/local/include/opencv/ and -L/opt/local/var/macports/software/opencv/1.0.0_0/opt/local/lib/ -lcxcore -lcv -lhighgui -lcvaux -lml
+
+then, compile it ::
+
+make clean
+make
+
+and copy the .pd_darwin to your externals folder ::
+
+cp *.pd_darwin /Applications/Pd-0.40.3-extended-20080315.app/Contents/Resources/extra/
+
+