mirror of
https://github.com/zhigang1992/PerspectiveTransform.git
synced 2026-01-12 09:14:11 +08:00
* add macos workflow * update opencv install script * cache OpenCV brew installation * update badge
10 lines
175 B
Bash
Executable File
10 lines
175 B
Bash
Executable File
#! /usr/bin/env bash
|
|
|
|
# uninstall-opencv.sh
|
|
|
|
# To remove all dependencies:
|
|
for package in opencv $(brew deps opencv)
|
|
do
|
|
brew rm --ignore-dependencies --force $package
|
|
done
|