Skip to content

Instantly share code, notes, and snippets.

View Kampi's full-sized avatar
:shipit:
Work, work.

Daniel Kampert Kampi

:shipit:
Work, work.
View GitHub Profile
@Kampi
Kampi / InstallOpenCV.sh
Last active April 27, 2019 11:49 — forked from willprice/README-opencv-3.1-raspberry-pi-installation.md
How to install OpenCV on Raspberry Pi
#!/usr/bin/env bash
OPENCV_VERSION="3.3.0"
PYTHON="python3"
OPENCV_URL="https://github.com/Itseez/opencv/archive/${OPENCV_VERSION}.zip"
OPENCV_PACKAGE_NAME="opencv-${OPENCV_VERSION}"
OPENCV_CONTRIB_URL="https://github.com/Itseez/opencv_contrib/archive/${OPENCV_VERSION}.zip"
OPENCV_CONTRIB_PACKAGE_NAME="opencv_contrib-${OPENCV_VERSION}"