-
Notifications
You must be signed in to change notification settings - Fork 93
How to build
Let's start developing with CV Drone !
- Download CV Drone from "Code" page.
- Extract the .zip file in any directory.
- Open .\build\vs20xx\test.sln.
- Press F7 to build. "Release" build is recommended.
- Connect your AR.Drone.
- Press F5 to run the program.
You can see AR.Drone's camera image.
-
Download CV Drone from "Code" page.
-
Extract the .zip file in any directory.
-
Install FFmpeg and OpenCV by MacPorts.
$ sudo port install opencv
$ sudo port install ffmpeg
NOTE: You may need to set PATHs to build.
$ export LIBRARY_PATH=/opt/local/lib:$LIBRARY_PATH
$ export LD_LIBRARY_PATH=/opt/local/lib:$LD_LIBRARY_PATH
$ export C_INCLUDE_PATH=/opt/local/include:$C_INCLUDE_PATH
$ export CPLUS_INCLUDE_PATH=/opt/local/include:$CPLUS_INCLUDE_PATH
- Go to linux directory and execute the makefile.
$ cd cvdrone-master/build/linux
$ make
-
Connect your AR.Drone.
-
Run the program.
$ ./test.a
-
Download CV Drone from "Code" page.
-
Extract the .zip file in any directory.
-
Install FFmpeg and OpenCV by apt-get.
$ sudo apt-get install ffmpeg
$ sudo apt-get install libopencv-dev
- Go to linux directory and execute the makefile.
$ cd cvdrone-master/build/linux
$ make
-
Connect your AR.Drone.
-
Run the program.
$ ./test.a
For more details, please see API reference.
- How to build
- API reference
- FAQ