Examples here use the default settings, see the VidStab readme on GitHub for more advanced instructions.
Here's an example video I made
brew install ffmpeg --with-libvidstab
--- | |
layout: none | |
--- | |
BEGIN:VCALENDAR | |
VERSION:2.0 | |
PRODID:http://www.example.com/ | |
METHOD:PUBLISH | |
{% for post in site.posts limit:10 %}BEGIN:VEVENT | |
UID:{{ post.date | date: "%Y%m%d" }}@example.com | |
ORGANIZER;CN="Organizer Name":MAILTO:organizer@example.org |
#! /bin/bash | |
# | |
# simple script to check for a given string pattern in any | |
# .c, .h, .cpp, .cxx, .m, .mm, etc source files | |
# | |
# you can pass your own list of extensions/file patterns as well: | |
# check-for-src-pattern . "foo" .h .cpp .py .sh Makefile | |
# | |
# Dan Wilcox <danomatika@gmail.com> 2014, 2016 | |
# |
Examples here use the default settings, see the VidStab readme on GitHub for more advanced instructions.
Here's an example video I made
brew install ffmpeg --with-libvidstab
These instructions are based on Mistobaan's gist but expanded and updated to work with the latest tensorflow OSX CUDA PR.
#include <opencv2/core/core.hpp> | |
#include <opencv2/highgui/highgui.hpp> | |
#include <opencv2/features2d/features2d.hpp> | |
#include <opencv2/imgproc/imgproc.hpp> | |
#include <opencv2/video/video.hpp> | |
#include <iostream> | |
using namespace cv; | |
using namespace std; |