diff --git a/index.html b/index.html index e99a0c8..1025a53 100644 --- a/index.html +++ b/index.html @@ -434,7 +434,7 @@

Method

// imageElement.alt = "Image 3"; } } - + @@ -443,6 +443,230 @@

Method


+ +
+
+
+
+ +

More Visualizations

+
+ + +
+
+
+ +
+
+
+

Novel View Synthesis (RGB)

+
+
+
+

Ground Truth Comparison (RGB)

+
+
+
+
+ +
+
+

Novel View Synthesis (Depth)

+
+
+
+

Novel View Synthesis (Normal)

+
+
+
+
+ +
+
+
+

Novel View Synthesis (RGB)

+
+
+
+

Ground Truth Comparison (RGB)

+
+
+
+
+ +
+
+

Novel View Synthesis (Depth)

+
+
+
+

Novel View Synthesis (Normal)

+
+
+
+
+ + + + + +
+
+
+
+ +
diff --git a/static/css/index.css b/static/css/index.css index 1f98631..24b35f0 100644 --- a/static/css/index.css +++ b/static/css/index.css @@ -176,15 +176,14 @@ body { border-radius: 5px; } - -.iframe-container { - display: flex; - justify-content: space-around; /* Change to 'space-around' or 'space-evenly' for more space */ - align-items: center; +.slider-block{ + display: none; /* Hide all divs initially */ + opacity: 0; } -.iframe-container iframe { - margin: 0 50px; /* Adds horizontal space between the two iframes */ +.slider-block.show{ + display: block; + opacity: 1; } .sliders-container { @@ -198,7 +197,8 @@ body { width: 48%; /* Make each slider 48% of the container width for side-by-side */ } -#trans_depth, #trans_normal, #trans_rgb, #trans_object { +#trans_depth, #trans_normal, #trans_rgb, #trans_object, #black_9_depth, #black_9_normal, #black_9_rgb, #black_9_object, +#black_5_depth, #black_5_normal, #black_5_rgb, #black_5_object { width: 100%; /* General width for all sliders */ } diff --git a/static/images/sliders/black_bunny/9_view/DN_black_RGB_13.jpg b/static/images/sliders/black_bunny/9_view/DN_black_RGB_13.jpg new file mode 100644 index 0000000..ccca0b5 Binary files /dev/null and b/static/images/sliders/black_bunny/9_view/DN_black_RGB_13.jpg differ diff --git a/static/images/sliders/black_bunny/9_view/FS_black_RGB_13.jpg b/static/images/sliders/black_bunny/9_view/FS_black_RGB_13.jpg new file mode 100644 index 0000000..d742443 Binary files /dev/null and b/static/images/sliders/black_bunny/9_view/FS_black_RGB_13.jpg differ diff --git a/static/js/juxtapose-slider.js b/static/js/juxtapose-slider.js index 95df831..c49c556 100644 --- a/static/js/juxtapose-slider.js +++ b/static/js/juxtapose-slider.js @@ -3,7 +3,7 @@ function createSlider(elementId, images, options) { return new juxtapose.JXSlider(elementId, images, options); } -const sliderOptions = { +sliderOptions = { animate: true, showLabels: true, showCredits: false,