diff options
| author | Ryan Baumann <ryan.baumann@gmail.com> | 2016-07-29 15:34:38 -0400 |
|---|---|---|
| committer | Ryan Baumann <ryan.baumann@gmail.com> | 2016-07-29 15:34:38 -0400 |
| commit | 200496c4216ab08824851c15632b1a1db6e76b31 (patch) | |
| tree | 105a5c436615f0eeb87643a95219754c31cc06bc /run-deepflow.sh | |
| parent | c580b52b55b4473deb278f85433dcf347ed79e24 (diff) | |
Add files/code from https://github.com/manuelruder/artistic-videos
Diffstat (limited to 'run-deepflow.sh')
| -rw-r--r-- | run-deepflow.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/run-deepflow.sh b/run-deepflow.sh new file mode 100644 index 0000000..68fd593 --- /dev/null +++ b/run-deepflow.sh @@ -0,0 +1,10 @@ +if [ "$#" -ne 3 ]; then + echo "This is an auxiliary script for makeOptFlow.sh. No need to call this script directly." + exit 1 +fi +if [ ! -f deepmatching-static ] && [ ! -f deepflow2-static ]; then + echo "Place deepflow2-static and deepmatching-static in this directory." + exit 1 +fi + +./deepmatching-static $1 $2 -nt 0 | ./deepflow2-static $1 $2 $3 -match
\ No newline at end of file |
