mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
432 B
15 lines
432 B
14 years ago
|
#!/bin/sh
|
||
|
cd `dirname $0`
|
||
|
PROJECT_NAME=HelloAndroid
|
||
|
|
||
|
# copy file to device (usually takes 10 seconds or more)
|
||
|
adb push ./bin/armeabi/$PROJECT_NAME /data/bin/sample/$PROJECT_NAME || return
|
||
|
|
||
|
# set execute permission
|
||
|
adb shell chmod 777 /data/bin/sample/$PROJECT_NAME || return
|
||
|
|
||
|
# execute our application
|
||
|
adb shell /data/bin/sample/$PROJECT_NAME || return
|
||
|
|
||
|
# get image result from device
|
||
|
adb pull /mnt/sdcard/HelloAndroid.png || return
|