diff --git a/index.html b/index.html index 11037a1..b001a4f 100644 --- a/index.html +++ b/index.html @@ -126,6 +126,27 @@

Generated 3D interacting humans

+
+
+

Optimization with BUDDI as prior

+

+ We sample meshes in close social interactions from BUDDI. +

+ +
+
+

Optimization with BUDDI as prior

diff --git a/media/projectpage/samples.gif b/media/samples.gif similarity index 100% rename from media/projectpage/samples.gif rename to media/samples.gif diff --git a/scripts/gifs_to_mp4.py b/scripts/gifs_to_mp4.py index b5fae31..5b30feb 100644 --- a/scripts/gifs_to_mp4.py +++ b/scripts/gifs_to_mp4.py @@ -4,7 +4,7 @@ from PIL import Image, ImageSequence # Specify the folder path, number of rows, and number of columns -folder_path = "media/projectpage/sample" +folder_path = "../projectpage/sample" rows = 4 columns = 5 @@ -36,7 +36,7 @@ def create_gif_array(folder_path, rows, columns): array = np.transpose(array, (2,0,1,3)) # Save the array gif - imageio.mimwrite(f"{folder_path}/samples.gif", array, fps=8) + imageio.mimwrite(f"media/samples.gif", array, fps=8) # Call the function to create the gif array and save it as an mp4 file create_gif_array(folder_path, rows, columns)