opencv 0.26.1

Rust bindings for OpenCV
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

set -vex

ci_dir="$(dirname "$0")"

if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
    "$ci_dir/install-bionic.sh"
elif [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
    "$ci_dir/install-osx.sh"
elif [[ "$TRAVIS_OS_NAME" == "windows" ]]; then
    "$ci_dir/install-windows.sh"
fi