mirror of
https://github.com/zhigang1992/PerspectiveTransform.git
synced 2026-05-12 17:58:12 +08:00
13 lines
228 B
Bash
Executable File
13 lines
228 B
Bash
Executable File
#! /usr/bin/env bash
|
|
|
|
# install-opencv.sh
|
|
|
|
libraries="openblas tbb gcc"
|
|
|
|
for package in $libraries opencv
|
|
do
|
|
brew list $package > /dev/null || brew install --ignore-dependencies --force-bottle $package
|
|
done
|
|
|
|
brew link opencv
|