Skip to content

Instantly share code, notes, and snippets.

View carlobrok's full-sized avatar
🤖
it's rocket science

Carlo carlobrok

🤖
it's rocket science
  • German Aerospace Center (DLR)
  • Braunschweig
View GitHub Profile
@carlobrok
carlobrok / install-opencv.sh
Last active October 19, 2020 10:38
RaspberryPi OpenCV installation script
#!/bin/bash
# SCRIPT OPTIONS
OPENCV_VERSION='4.4.0' # Version to be installed
BUILD_PATH=${1:-$PWD}
check_yn() {
while true; do
read -p "$1 [y]es/[n]o " yn
case $yn in