forked from JoshBlake/RGBDToolkit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcloneaddons.sh
26 lines (23 loc) · 1005 Bytes
/
cloneaddons.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/bash
#make sure you are in the RGBDToolkit project when you run this script
cd ../../addons
git clone https://github.com/obviousjim/ofxCameraTrack
git clone https://github.com/Flightphase/ofxGameCamera
git clone https://github.com/Flightphase/ofxRange
git clone https://github.com/Flightphase/ofxTimeline
git clone https://github.com/Flightphase/ofxTween
git clone https://github.com/Flightphase/ofxMSAInteractiveObject
git clone https://github.com/Flightphase/ofxTextInputField
git clone https://github.com/Flightphase/ofxSimpleGuiToo
git clone https://github.com/obviousjim/ofxRGBDepth
git clone https://github.com/obviousjim/ofxCv
git clone https://github.com/obviousjim/ofxKinect
git clone https://github.com/obviousjim/ofxOpenNI
git clone https://github.com/obviousjim/ofxMSATimer
cd ofxCv/
git checkout opencv-2.3
cd ..
# you also need to replace ofxOpenCv/libs/opencv with this link:
# https://github.com/kylemcdonald/ofxCv/downloads
# opencv-2.3.-osx.zip — OpenCV 2.3 library
=======