Skip to content

Instantly share code, notes, and snippets.

@vork
vork / # gettext - 2018-08-30_12-14-35.txt
Created August 30, 2018 10:18
gettext on Ubuntu 18.04 LTS - Homebrew build logs
Homebrew build logs for gettext on Ubuntu 18.04 LTS
Build date: 2018-08-30 12:14:35
@vork
vork / CreateLongExposure.m
Created May 10, 2016 22:49
Matlab script for faking a long exposure through averaging video frames.
function [] = CreateLongExposure( filename )
%CREATELONGEXPOSURE Summary of this function goes here
% Detailed explanation goes here
v = VideoReader(filename)
height = v.Height;
width = v.Width;
longExp = zeros(height, width, 3, 'uint64');
k = 1;
dur = v.Duration;