-
Notifications
You must be signed in to change notification settings - Fork 0
/
3d-modeling.html
290 lines (218 loc) · 15.7 KB
/
3d-modeling.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>DressMe Research</title>
<!-- CSS FILES -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-icons.css" rel="stylesheet">
<link href="css/templatemo-tiya-golf-club.css" rel="stylesheet">
<!--
TemplateMo 587 Tiya Golf Club
https://templatemo.com/tm-587-tiya-golf-club
-->
</head>
<body>
<main>
<nav class="navbar navbar-expand-lg">
<div class="container">
<a class="navbar-brand d-flex align-items-center" href="index.html">
<img src="images/logo.png" class="navbar-brand-image img-fluid" alt="Tiya Golf Club">
<span class="navbar-brand-text">
DressMe
<small>with vr</small>
</span>
</a>
<!-- <div class="d-lg-none ms-auto me-3">
<a class="btn custom-btn custom-border-btn" data-bs-toggle="offcanvas" href="#offcanvasExample" role="button" aria-controls="offcanvasExample">Member Login</a>
</div> -->
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-lg-auto">
<li class="nav-item">
<a class="nav-link" href="index.html#home">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#background">Background</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#problem">Research Problem</a>
</li>
<li class="nav-item">
<a class="nav-link click-scroll" href="document-list.html">Documents</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#team">Team</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarLightDropdownMenuLink" role="button" data-bs-toggle="dropdown" aria-expanded="false">Components</a>
<ul class="dropdown-menu dropdown-menu-light" aria-labelledby="navbarLightDropdownMenuLink">
<li><a class="dropdown-item active" href="pose-detection.html">Pose Detection</a></li>
<li><a class="dropdown-item active" href="measurement-estimation.html">Measuremet Estimation</a></li>
<li><a class="dropdown-item" href="3d-modeling.html">3D Modeling</a></li>
<li><a class="dropdown-item active" href="virtual-reality.html">Virtual Reality</a></li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
<div class="offcanvas offcanvas-end" data-bs-scroll="true" tabindex="-1" id="offcanvasExample" aria-labelledby="offcanvasExampleLabel">
<!-- <div class="offcanvas-header">
<h5 class="offcanvas-title" id="offcanvasExampleLabel">Member Login</h5>
<button type="button" class="btn-close" data-bs-dismiss="offcanvas" aria-label="Close"></button>
</div> -->
<div class="offcanvas-body d-flex flex-column">
<form class="custom-form member-login-form" action="#" method="post" role="form">
<div class="member-login-form-body">
<div class="mb-4">
<label class="form-label mb-2" for="member-login-number">Membership No.</label>
<input type="text" name="member-login-number" id="member-login-number" class="form-control" placeholder="11002560" required>
</div>
<div class="mb-4">
<label class="form-label mb-2" for="member-login-password">Password</label>
<input type="password" name="member-login-password" id="member-login-password" pattern="[0-9a-zA-Z]{4,10}" class="form-control" placeholder="Password" required="">
</div>
<div class="form-check mb-4">
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault">
<label class="form-check-label" for="flexCheckDefault">
Remember me
</label>
</div>
<div class="col-lg-5 col-md-7 col-8 mx-auto">
<button type="submit" class="form-control">Login</button>
</div>
<div class="text-center my-4">
<a href="#">Forgotten password?</a>
</div>
</div>
</form>
<div class="mt-auto mb-5">
<p>
<strong class="text-white me-3">Any Questions?</strong>
<a href="tel: 010-020-0340" class="contact-link">
010-020-0340
</a>
</p>
</div>
</div>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="#3D405B" fill-opacity="1" d="M0,224L34.3,192C68.6,160,137,96,206,90.7C274.3,85,343,139,411,144C480,149,549,107,617,122.7C685.7,139,754,213,823,240C891.4,267,960,245,1029,224C1097.1,203,1166,181,1234,160C1302.9,139,1371,117,1406,106.7L1440,96L1440,320L1405.7,320C1371.4,320,1303,320,1234,320C1165.7,320,1097,320,1029,320C960,320,891,320,823,320C754.3,320,686,320,617,320C548.6,320,480,320,411,320C342.9,320,274,320,206,320C137.1,320,69,320,34,320L0,320Z"></path></svg>
</div>
<section class="hero-section hero-50 d-flex justify-content-center align-items-center" id="section_1">
<div class="section-overlay"></div>
<svg viewBox="0 0 1962 178" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><path fill="#3D405B" d="M 0 114 C 118.5 114 118.5 167 237 167 L 237 167 L 237 0 L 0 0 Z" stroke-width="0"></path> <path fill="#3D405B" d="M 236 167 C 373 167 373 128 510 128 L 510 128 L 510 0 L 236 0 Z" stroke-width="0"></path> <path fill="#3D405B" d="M 509 128 C 607 128 607 153 705 153 L 705 153 L 705 0 L 509 0 Z" stroke-width="0"></path><path fill="#3D405B" d="M 704 153 C 812 153 812 113 920 113 L 920 113 L 920 0 L 704 0 Z" stroke-width="0"></path><path fill="#3D405B" d="M 919 113 C 1048.5 113 1048.5 148 1178 148 L 1178 148 L 1178 0 L 919 0 Z" stroke-width="0"></path><path fill="#3D405B" d="M 1177 148 C 1359.5 148 1359.5 129 1542 129 L 1542 129 L 1542 0 L 1177 0 Z" stroke-width="0"></path><path fill="#3D405B" d="M 1541 129 C 1751.5 129 1751.5 138 1962 138 L 1962 138 L 1962 0 L 1541 0 Z" stroke-width="0"></path></svg>
<div class="container">
<div class="row">
<div class="col-lg-6 col-12 text-white">
<h1 class="text-white mb-0 pb-2">3d Human Body Modeling</h1>
<p class="text-white">by <b>PRABODHYA UHH </b>(IT19988252)</p>
<p class="text-white"><small><i>Computer Science and Software Engineering Dept.
<br>Sri Lanka Institute of Information Technology
</i></small></p>
</div>
</div>
</div>
<svg viewBox="0 0 1962 178" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><path fill="#ffffff" d="M 0 114 C 118.5 114 118.5 167 237 167 L 237 167 L 237 0 L 0 0 Z" stroke-width="0"></path> <path fill="#ffffff" d="M 236 167 C 373 167 373 128 510 128 L 510 128 L 510 0 L 236 0 Z" stroke-width="0"></path> <path fill="#ffffff" d="M 509 128 C 607 128 607 153 705 153 L 705 153 L 705 0 L 509 0 Z" stroke-width="0"></path><path fill="#ffffff" d="M 704 153 C 812 153 812 113 920 113 L 920 113 L 920 0 L 704 0 Z" stroke-width="0"></path><path fill="#ffffff" d="M 919 113 C 1048.5 113 1048.5 148 1178 148 L 1178 148 L 1178 0 L 919 0 Z" stroke-width="0"></path><path fill="#ffffff" d="M 1177 148 C 1359.5 148 1359.5 129 1542 129 L 1542 129 L 1542 0 L 1177 0 Z" stroke-width="0"></path><path fill="#ffffff" d="M 1541 129 C 1751.5 129 1751.5 138 1962 138 L 1962 138 L 1962 0 L 1541 0 Z" stroke-width="0"></path></svg>
</section>
<section class="events-section events-detail-section section-padding" id="section_2">
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-8 col-12 mx-auto">
<h2 class="mb-0 mt-5">Intoduction</h2>
<p>Generate 3d personalized human body model according to the measured users' exact body measurements</p>
<br>
<h2>Research Problem</h2>
<p> Personalized 3d human modeling applications still in research level to improve the accuracy and the performance. We consider a way to improve the accuracy of the personalized 3d model.</p>
<br>
<h2>Research Gap</h2>
<div class="table-responsive">
<table class="table text-center">
<thead>
<tr>
<th style="width: 28%;"></th>
<th style="width: 18%;">CloTH-VTON+
</th>
<th style="width: 18%;">FashionFit</th>
<th style="width: 18%;">An enhanced virtual fitting room using deep neural networks</th>
<th style="width: 18%;">Proposed system
</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row" class="text-start">Created base 3d reference human body models.
</th>
<td>
<i class="bi-x-circle-fill"></i>
</td>
<td>
<i class="bi-x-circle-fill"></i>
</td>
<td>
<i class="bi-check-circle-fill"></i>
</td>
<td>
<i class="bi-check-circle-fill"></i>
</td>
</tr>
<tr>
<th scope="row" class="text-start">Deform the reference model according to the given body measurements and the body posture.
</th>
<td>
<i class="bi-x-circle-fill"></i>
</td>
<td>
<i class="bi-x-circle-fill"></i>
</td>
<td>
<i class="bi-x-circle-fill"></i>
</td>
<td>
<i class="bi-check-circle-fill"></i>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
</main>
<footer class="site-footer">
<div class="container">
<div class="row">
<div class="col-lg-6 col-12 me-auto mb-5 mb-lg-0">
<a class="navbar-brand d-flex align-items-center" href="index.html">
<img src="images/logo.png" class="navbar-brand-image img-fluid" alt="">
<span class="navbar-brand-text">
DressMe
<small>with vr</small>
</span>
</a>
</div>
<div class="col-lg-6 col-12 pb-5">
<p class="copyright-text">Copyright ©2023 DressMe team</p>
</div>
</div>
</div>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="#81B29A" fill-opacity="1" d="M0,224L34.3,192C68.6,160,137,96,206,90.7C274.3,85,343,139,411,144C480,149,549,107,617,122.7C685.7,139,754,213,823,240C891.4,267,960,245,1029,224C1097.1,203,1166,181,1234,160C1302.9,139,1371,117,1406,106.7L1440,96L1440,320L1405.7,320C1371.4,320,1303,320,1234,320C1165.7,320,1097,320,1029,320C960,320,891,320,823,320C754.3,320,686,320,617,320C548.6,320,480,320,411,320C342.9,320,274,320,206,320C137.1,320,69,320,34,320L0,320Z"></path></svg>
</footer>
<!-- JAVASCRIPT FILES -->
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/jquery.sticky.js"></script>
<script src="js/custom.js"></script>
</body>
</html>