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 / bitmap.h
Last active December 28, 2022 22:56
C header for the bitmap (.bmp) file format.
/*****************************************************************************/
/**
* @file bitmap.h
*
* Bitmap file format definitions.
*
* Copyright (C) Daniel Kampert, 2022
* Website: www.kampis-elektroecke.de
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"),
@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}"