Skip to content

Commit

Permalink
add more rgbd comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
wenbowen123 committed Jan 21, 2025
1 parent d367d23 commit 297b5ec
Show file tree
Hide file tree
Showing 17 changed files with 69 additions and 3 deletions.
72 changes: 69 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ <h2 class="title is-3">Abstract</h2>
<div class="columns is-centered has-text-centered">
<div class="column is-four-fifths">
<h2 class="title is-3">ETH3D Leaderboard 🏆</h2>
<p style="text-align: left;margin-bottom: 10px">We obtained the 1st place on the <a href="https://www.eth3d.net/low_res_two_view">ETH3D leaderboard</a> at the time of submission.</p>
<p style="text-align: left;margin-bottom: 10px">We obtained the 1st place on the <a href="https://www.eth3d.net/low_res_two_view">ETH3D leaderboard</a>.</p>
<img src="static/images/eth_leaderboard.png" width="80%">
</div>
</div>
Expand Down Expand Up @@ -300,9 +300,18 @@ <h2 class="title is-3" style="text-align: center;">Comparison to RGBD Camera</h2
<p style="text-align: left;">We compare to common RGBD cameras including RealSense, Kinect, Zed. Ours uses the same stereo image from Zed as input. Different cameras may use different filtering steps for postprocessing, wherease the point cloud accuracy should not be affected.</p>
<div style="display: flex; flex: none; align-items: center; justify-content: center; gap: 10px; margin-top: 10px;">
<p class="title is-5" style="margin: 0;">Scene:</p>
<span id="Toolbox" class="button scene_cam is-info is-rounded" onclick="change_scene_cam('Toolbox')">
<span id="Nut" class="button scene_cam is-info is-rounded" onclick="change_scene_cam('Nut')">
Nut
</span>
<span id="Toolbox" class="button scene_cam is-black is-rounded" onclick="change_scene_cam('Toolbox')">
Toolbox
</span>
<span id="Bolts Pile" class="button scene_cam is-black is-rounded" onclick="change_scene_cam('Bolts Pile')">
Bolts Pile
</span>
<span id="Bolt" class="button scene_cam is-black is-rounded" onclick="change_scene_cam('Bolt')">
Bolt
</span>
</div>
<div style="display: flex; flex: none; align-items: center; justify-content: center; gap: 10px; margin-top: 10px">
<p class="title is-5" style="margin: 0;">Result:</p>
Expand Down Expand Up @@ -550,12 +559,69 @@ <h2 class="title">Acknowledgement</h2>
'cloud': "static/comparison/toolbox/kinect.glb"
},
},
"Bolts Pile": {
"left":"static/comparison/bolts_pile/left.png",
"Ours":
{
'cloud': "static/comparison/bolts_pile/ours_denoise_downsample.glb"
},
"Zed":
{
'cloud': "static/comparison/bolts_pile/zed.glb"
},
"RealSense":
{
'cloud': "static/comparison/bolts_pile/realsense.glb"
},
"Kinect Azure":
{
'cloud': "static/comparison/bolts_pile/kinect.glb"
},
},
"Bolt": {
"left":"static/comparison/bolt_single/left.png",
"Ours":
{
'cloud': "static/comparison/bolt_single/ours_denoise.glb"
},
"Zed":
{
'cloud': "static/comparison/bolt_single/zed.glb"
},
"RealSense":
{
'cloud': "static/comparison/bolt_single/realsense.glb"
},
"Kinect Azure":
{
'cloud': "static/comparison/bolt_single/kinect.glb"
},
},
"Nut": {
"left":"static/comparison/nut/left.png",
"Ours":
{
'cloud': "static/comparison/nut/ours_denoise.glb"
},
"Zed":
{
'cloud': "static/comparison/nut/zed.glb"
},
"RealSense":
{
'cloud': "static/comparison/nut/realsense.glb"
},
"Kinect Azure":
{
'cloud': "static/comparison/nut/kinect.glb"
},
}
}

var cur_scene = 'Endeavor';
var cur_method = 'Ours'
var cur_method_mono = 'Ours'
var cur_scene_cam = 'Toolbox';
var cur_scene_cam = 'Nut';
var cur_method_cam = 'Ours'
window.onload = () => {
const left = document.getElementById('left');
Expand Down
Binary file added static/comparison/bolt_single/kinect.glb
Binary file not shown.
Binary file added static/comparison/bolt_single/left.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/comparison/bolt_single/ours_denoise.glb
Binary file not shown.
Binary file added static/comparison/bolt_single/realsense.glb
Binary file not shown.
Binary file added static/comparison/bolt_single/zed.glb
Binary file not shown.
Binary file added static/comparison/bolts_pile/kinect.glb
Binary file not shown.
Binary file added static/comparison/bolts_pile/left.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file added static/comparison/bolts_pile/realsense.glb
Binary file not shown.
Binary file added static/comparison/bolts_pile/zed.glb
Binary file not shown.
Binary file added static/comparison/nut/kinect.glb
Binary file not shown.
Binary file added static/comparison/nut/left.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/comparison/nut/ours_denoise.glb
Binary file not shown.
Binary file added static/comparison/nut/realsense.glb
Binary file not shown.
Binary file added static/comparison/nut/stereo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/comparison/nut/zed.glb
Binary file not shown.

0 comments on commit 297b5ec

Please sign in to comment.