Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions setup_opencv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,13 @@ set -e

# Download OpenCV Android SDK

opencv_version="3.4.7"
opencv_sdk_zip="cache/opencv-android-sdk.zip"

if [[ $1 = "--skip-download" ]]; then
echo "Skipping Download of ${opencv_sdk_zip}..."
else
echo "Downloading ${opencv_sdk_zip}..."
download_url="https://pullrequest.opencv.org/buildbot/export/opencv_releases/3_4-contrib_pack-contrib-android/20191010-120437--497/OpenCV4Android.zip"
download_url="https://pullrequest.opencv.org/buildbot/export/opencv_releases/3_4-contrib_pack-contrib-android/20191219-185845--568/OpenCV4Android.zip"
echo "Download URL: ${download_url}"
wget -c -O ${opencv_sdk_zip} ${download_url}
fi
Expand Down