summaryrefslogtreecommitdiff
path: root/stylize_video.sh
diff options
context:
space:
mode:
Diffstat (limited to 'stylize_video.sh')
-rw-r--r--stylize_video.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/stylize_video.sh b/stylize_video.sh
index 7f9cd6e..5f39f89 100644
--- a/stylize_video.sh
+++ b/stylize_video.sh
@@ -65,17 +65,17 @@ else
fi
num_frames=$(find "$temp_dir" -iname "*.ppm" | wc -l)
-echo "Computing optical flow. This will take a while..."
+echo "Computing optical flow [CPU]. This will take a while..."
cd ./video_input
bash make-opt-flow.sh ${content_filename}/frame_%04d.ppm ${content_filename}
cd ..
-echo "Rendering stylized video frames. This will take a while..."
-python neural_style.py --is_video \
+echo "Rendering stylized video frames [CPU & GPU]. This will take a while..."
+python neural_style.py --video \
--video_input_dir "${temp_dir}" \
--style_imgs_dir "${style_dir}" \
--style_imgs "${style_filename}" \
---end_frame "$num_frames" \
+--end_frame "${num_frames}" \
--max_size "${max_size}" \
--verbose;