Skip to content

Instantly share code, notes, and snippets.

View UlrichvonHutten's full-sized avatar

UlrichvonHutten UlrichvonHutten

View GitHub Profile
@UlrichvonHutten
UlrichvonHutten / bg_subtractor.py
Created January 6, 2019 00:13 — forked from harshad-tal/bg_subtractor.py
Background Subtraction from video using OpenCV and Python
import numpy as np
import cv2
file_path = "vid.mp4"
cap = cv2.VideoCapture(file_path)
first_iter = True
result = None
while True:
ret, frame = cap.read()
@UlrichvonHutten
UlrichvonHutten / 1.js
Created May 11, 2018 21:50 — forked from ToeJamson/1.js
Receiving and Displaying Vehicle Data with Automatic and MapBox
var fs = require('fs');
var coffee = require('coffee-script');