-
Notifications
You must be signed in to change notification settings - Fork 47
/
stylizeVideo_flownet.sh
98 lines (83 loc) · 2.85 KB
/
stylizeVideo_flownet.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
set -e
# Get a carriage return into `cr`
cr=`echo $'\n.'`
cr=${cr%.}
# Find out whether ffmpeg or avconv is installed on the system
FFMPEG=ffmpeg
command -v $FFMPEG >/dev/null 2>&1 || {
FFMPEG=avconv
command -v $FFMPEG >/dev/null 2>&1 || {
echo >&2 "This script requires either ffmpeg or avconv installed. Aborting."; exit 1;
}
}
if [ "$#" -le 1 ] || [ "$#" -ge 4 ]; then
echo "Usage: ./stylizeVideo.sh <path_to_video> <path_to_pretrained_model> [<path_to_firstframe_model>]"
exit 1
fi
# Parse arguments
filename=$(basename "$1")
extension="${filename##*.}"
filename="${filename%.*}"
filename=${filename//[%]/x}
model_vid_path=$2
model_img_path=${3:-self}
# Create output folder
mkdir -p $filename
echo ""
read -p "In case of multiple GPUs, enter the zero-indexed ID of the GPU to use here, or enter -1 for CPU mode (slow!).\
[0] $cr > " gpu
gpu=${gpu:-0}
if [ $gpu -ge 0 ]; then
echo ""
read -p "Which backend do you want to use? \
For Nvidia GPUs it is recommended to use cudnn if installed. If not, use nn. \
For non-Nvidia GPU, use opencl (not tested). Note: You have to have the given backend installed in order to use it. [cudnn] $cr > " backend
backend=${backend:-cudnn}
if [ "$backend" == "cudnn" ]; then
backend="cuda"
use_cudnn=1
elif [ "$backend" == "nn" ]; then
backend="cuda"
use_cudnn=0
elif [ "$backend" == "opencl" ]; then
use_cudnn=0
else
echo "Unknown backend."
exit 1
fi
else
backend="nn"
use_cudnn=0
fi
echo ""
read -p "Please enter a resolution at which the video should be processed, \
in the format w:h, or leave blank to use the original resolution. \
If you run out of memory, reduce the resolution. $cr > " resolution
# Save frames of the video as individual image files
if [ -z $resolution ]; then
$FFMPEG -i $1 ${filename}/frame_%05d.ppm
resolution=default
else
$FFMPEG -i $1 -vf scale=$resolution ${filename}/frame_%05d.ppm
fi
echo ""
echo "Starting optical flow computation..."
# This launches optical flow computation
bash makeOptFlow_flownet.sh ./${filename}/frame_%05d.ppm ./${filename}/flow_$resolution 1
echo "Starting occlusion estimator as a background task..."
# Hack: Just run makeOptFlow.sh, this will skip flow computation since flow files are already present
nice bash makeOptFlow_deepflow.sh ./${filename}/frame_%05d.ppm ./${filename}/flow_$resolution 1 &
echo "Starting video stylization..."
# Perform style transfer
th fast_artistic_video.lua \
-input_pattern ${filename}/frame_%05d.ppm \
-flow_pattern ${filename}/flow_${resolution}/backward_[%d]_{%d}.flo \
-occlusions_pattern ${filename}/flow_${resolution}/reliable_[%d]_{%d}.pgm \
-output_prefix ${filename}/out \
-backend $backend \
-use_cudnn $use_cudnn \
-gpu $gpu \
-model_vid $model_vid_path \
-model_img $model_img_path
# Create video from output images.
$FFMPEG -i ${filename}/out-%05d.png ${filename}-stylized.$extension