Skip to content

Instantly share code, notes, and snippets.

View hstm's full-sized avatar

Helge Stahlmann hstm

View GitHub Profile
@hstm
hstm / CMake OpenCV with CUDA.txt
Created November 23, 2020 10:16
CMake OpenCV with CUDA on Windows 10
OpenCV with CUDA
OpenCV 4.3.0 and OpenCV Contrib 4.3.0
Visual Studio 2019
CUDA 10.2
Python 3.7
CMake 3.17
NVIdia Codec SDK https://developer.nvidia.com/nvidia-video-codec-sdk
Intel MKL version 2019 Update 5 (2019.0.5.068) and TBB version 2019 Update 8 (2019.0.5.068)
Intel Media SDK MediaSDK2019R1
Ninja 1.10
@hstm
hstm / settings.json
Created September 2, 2020 11:24
Windows Terminal Settings
// This file was initially generated by Windows Terminal 1.2.2381.0
// It should still be usable in newer versions, but newer versions might have additional
// settings, help text, or changes that you will not see unless you clear this file
// and let us generate a new one for you.
// To view the default settings, hold "alt" while clicking on the "Settings" button.
// For documentation on these settings, see: https://aka.ms/terminal-documentation
{
"$schema": "https://aka.ms/terminal-profiles-schema",
### Keybase proof
I hereby claim:
* I am hstm on github.
* I am helgestahlmann (https://keybase.io/helgestahlmann) on keybase.
* I have a public key ASAP9iWVO6WzZ_D1GpL7Q7RcbM6u_n6KnvLZZiA9cdPzzwo
To claim this, I am signing this object:
@hstm
hstm / setup-zeromq.sh
Created March 8, 2018 16:50
Setup zeromq in Ubuntu 16.04/Windows Subsystem for Linux (WSL)
#!/bin/bash
# Ref http://zeromq.org/intro:get-the-software
wget https://github.com/zeromq/libzmq/releases/download/v4.2.3/zeromq-4.2.3.tar.gz
# Unpack
tar xvzf zeromq-4.2.3.tar.gz
# Install dependencies
sudo apt-get update && \