summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--examples/style_interpolation/taj_mahal_afremov_grey_2_8.pngbin0 -> 439675 bytes
-rw-r--r--examples/style_interpolation/taj_mahal_afremov_grey_5_5.pngbin437198 -> 440266 bytes
-rw-r--r--examples/style_interpolation/taj_mahal_afremov_grey_8_2.pngbin0 -> 441781 bytes
-rw-r--r--stylize_video.sh8
4 files changed, 4 insertions, 4 deletions
diff --git a/examples/style_interpolation/taj_mahal_afremov_grey_2_8.png b/examples/style_interpolation/taj_mahal_afremov_grey_2_8.png
new file mode 100644
index 0000000..e716a51
--- /dev/null
+++ b/examples/style_interpolation/taj_mahal_afremov_grey_2_8.png
Binary files differ
diff --git a/examples/style_interpolation/taj_mahal_afremov_grey_5_5.png b/examples/style_interpolation/taj_mahal_afremov_grey_5_5.png
index 92ced08..f036770 100644
--- a/examples/style_interpolation/taj_mahal_afremov_grey_5_5.png
+++ b/examples/style_interpolation/taj_mahal_afremov_grey_5_5.png
Binary files differ
diff --git a/examples/style_interpolation/taj_mahal_afremov_grey_8_2.png b/examples/style_interpolation/taj_mahal_afremov_grey_8_2.png
new file mode 100644
index 0000000..1711263
--- /dev/null
+++ b/examples/style_interpolation/taj_mahal_afremov_grey_8_2.png
Binary files differ
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;