-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
124 lines (124 loc) · 4.91 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LS-Human Dataset</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background: linear-gradient(to bottom, #a8e063, #56ab2f);
text-align: center;
color: #fff;
}
.header {
background: rgba(255, 255, 255, 0.8);
color: #000;
padding: 50px 20px;
}
.header h1 {
font-size: 3em;
margin: 0;
}
.header p {
font-size: 1.5em;
margin: 10px 0 30px;
}
.buttons {
display: flex;
justify-content: center;
gap: 15px;
margin-bottom: 20px;
}
.buttons a {
text-decoration: none;
color: #fff;
background-color: #28a745;
padding: 10px 20px;
border-radius: 5px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: background-color 0.3s, color 0.3s;
}
.buttons a:hover {
background-color: #333;
}
.content {
padding: 20px;
}
.content h2 {
color: #fff;
}
.images {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
padding: 20px;
}
.images img {
width: calc(33% - 20px);
height: auto;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: transform 0.3s;
}
.images img:hover {
transform: scale(1.1);
}
.dataset-title {
font-size: 2em;
margin: 20px 0;
color: #fff;
font-weight: bold;
}
.image-row {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 20px;
}
</style>
</head>
<body>
<div class="header">
<h1>LS-Human Dataset</h1>
<p>The dataset of Dyhuman</p>
<div class="buttons">
<a href="https://github.com/fuzhaiping/fuzhaiping.github.io/tree/main/samples.7z" download>Download samples</a>
<a href="None" download>Download hole dataset(Coming soon)</a>
</div>
</div>
<div class="content">
<h2>Welcome to LS-human Pages.</h2>
<p>LS-human dataset was collected using 5 RGBD cameras, capturing RGBD data of human scenes from multiple perspectives.
We simulate a 3D live streaming scenario where the characters interact with the audience, incorporating vivid facial expressions and challenging hand gestures in the video.
This dataset can address the current lack of RGBD human scene datasets.
Additionally, LS-human can be widely used for training tasks such as rendering new views under sparse viewpoints.
</p>
</div>
<div class="dataset-title">DataSet</div>
<div class="images">
<div class="image-row">
<img src="https://github.com/fuzhaiping/fuzhaiping.github.io/blob/main/samples/human1/color/0.png?raw=true" alt="Image 1">
<img src="https://github.com/fuzhaiping/fuzhaiping.github.io/blob/main/samples/human1/color/1.png?raw=true" alt="Image 2">
<img src="https://github.com/fuzhaiping/fuzhaiping.github.io/blob/main/samples/human1/color/4.png?raw=true" alt="Image 3">
</div>
<div class="image-row">
<img src="https://github.com/fuzhaiping/fuzhaiping.github.io/blob/main/samples/human2/color/0.png?raw=true" alt="Image 4">
<img src="https://github.com/fuzhaiping/fuzhaiping.github.io/blob/main/samples/human2/color/1.png?raw=true" alt="Image 5">
<img src="https://github.com/fuzhaiping/fuzhaiping.github.io/blob/main/samples/human2/color/4.png?raw=true" alt="Image 6">
</div>
<div class="image-row">
<img src="https://github.com/fuzhaiping/fuzhaiping.github.io/blob/main/samples/human3/color/0.png?raw=true" alt="Image 7">
<img src="https://github.com/fuzhaiping/fuzhaiping.github.io/blob/main/samples/human3/color/1.png?raw=true" alt="Image 8">
<img src="https://github.com/fuzhaiping/fuzhaiping.github.io/blob/main/samples/human3/color/4.png?raw=true" alt="Image 9">
</div>
<div class="image-row">
<img src="https://github.com/fuzhaiping/fuzhaiping.github.io/blob/main/samples/human4/color/0.png?raw=true" alt="Image 10">
<img src="https://github.com/fuzhaiping/fuzhaiping.github.io/blob/main/samples/human4/color/1.png?raw=true" alt="Image 11">
<img src="https://github.com/fuzhaiping/fuzhaiping.github.io/blob/main/samples/human4/color/4.png?raw=true" alt="Image 12">
</div>
</div>
</body>
</html>