-
Notifications
You must be signed in to change notification settings - Fork 1
/
pose_est.html
133 lines (118 loc) · 3.57 KB
/
pose_est.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!doctype html>
<html lang="en">
<head>
<title>Pose Estimation</title>
<link href="./files/style.css" rel="stylesheet">
<!-- <link rel="icon" href="icons/demon_logo_transparent.png" type="image/png"> -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" />
<style>
body {
padding: 2em;
font-family: sans-serif;
}
iframe {
border-radius: 0.5em;
width: 40em;
height: 40em;
border: none;
box-shadow: 0 0 1em 0em rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
iframe {
width: 100%;
height: 30em;
}
}
a,
a:link {
color: #777;
}
/* Styles for the instruction icons and text */
.instructions {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
gap: 2em;
text-align: center;
padding: 1em;
}
.instruction-item {
display: flex;
align-items: center;
gap: 0.5em;
font-size: 1.5em;
}
.instruction-item img {
width: 36px;
height: 36px;
}
.instructions_small {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
gap: 1.5em;
text-align: center;
padding: 0.75em;
}
.instruction-item_small {
display: flex;
align-items: center;
gap: 0.5em;
font-size: 1.25em;
}
.instruction-item_small img {
width: 30px;
height: 30px;
}
</style>
<title>Monst3r Results</title>
</head>
<body>
<div>
<center>
<h3 class="title is-3"> Pose estimation on in-the-wild videos.
</center>
</div>
<!-- Updated prominent message-->
<!-- <p style="text-align: center; font-size: 1.2em; padding: 0em; font-weight: bold;">
Please click on other pages to see more results
</p> -->
<!-- <div style="text-align: center; padding: 1em">
<a href="page1.html">Page 1</a>
•
<a href="page2.html">Page 2</a>
•
<strong>Page 3</strong>
</div> -->
<!-- Add downsampling note -->
<p style="text-align: center; font-size: 1em; padding: 0em; color: #555;">
(It may take <strong>1-2 minutes</strong> to load the interactive visualization)
</p>
<div id="wrapper" style="
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
gap: 2em;
">
<iframe
src="https://rsrd-anonymous.github.io/build/?playbackPath=https://snap-research.github.io/DELTA/resources/viser_records/recording_car-roundabout.viser&initDistanceScale=0.3&initHeightOffset=0.1">
</iframe>
<iframe
src="https://rsrd-anonymous.github.io/build/?playbackPath=https://snap-research.github.io/DELTA/resources/viser_records/recording_horsejump-high.viser&initDistanceScale=0.3&initHeightOffset=0.1">
</iframe>
<iframe
src="https://rsrd-anonymous.github.io/build/?playbackPath=https://snap-research.github.io/DELTA/resources/viser_records/recording_parkour.viser&initDistanceScale=0.3&initHeightOffset=0.1">
</iframe>
<iframe
src="https://rsrd-anonymous.github.io/build/?playbackPath=https://snap-research.github.io/DELTA/resources/viser_records/recording_dog.viser&initDistanceScale=0.3&initHeightOffset=0.1">
</iframe>
<iframe
src="https://rsrd-anonymous.github.io/build/?playbackPath=https://snap-research.github.io/DELTA/resources/viser_records/recording_tortoise_swim.viser&initDistanceScale=0.3&initHeightOffset=0.1">
</iframe>
</div>
</body>
</html>