This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Homebrew build logs for gettext on Ubuntu 18.04 LTS | |
| Build date: 2018-08-30 12:14:35 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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; |