-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpeople.html
More file actions
461 lines (430 loc) · 20.7 KB
/
people.html
File metadata and controls
461 lines (430 loc) · 20.7 KB
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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>People - Embodied Perception and Interaction Lab (EmPACT) Lab</title>
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:300,400,700">
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/css/bootstrap-theme.css">
<link rel="stylesheet" href="assets/css/style.css">
<!-- FIX: make team grid use flex so wrapping is clean -->
<style>
#team-members-container {
display: flex;
flex-wrap: wrap;
margin-left: -15px; /* match .row gutters */
margin-right: -15px;
}
#team-members-container .col-md-4 {
float: none; /* override Bootstrap float */
flex: 0 0 25%; /* 4 per row on desktop */
max-width: 25%;
padding-left: 15px;
padding-right: 15px;
}
#team-members-container .col-md-12 {
float: none;
flex: 0 0 100%; /* headings span full width */
max-width: 100%;
padding-left: 15px;
padding-right: 15px;
}
/* Fix member images to prevent overflow */
.member-img {
overflow: hidden;
width: 100%;
margin: 0 auto 15px;
display: flex;
align-items: center;
justify-content: center;
}
.member-img img {
max-width: 90%;
width: auto;
height: auto;
display: block;
margin: 0 auto;
}
/* Mobile responsive: 2 people per row on phones */
@media (max-width: 767px) {
#team-members-container {
margin-left: 0;
margin-right: 0;
}
#team-members-container .col-md-4 {
flex: 0 0 50%;
max-width: 50%;
padding-left: 8px;
padding-right: 8px;
}
#team-members-container .col-md-12 {
padding-left: 15px;
padding-right: 15px;
}
/* Adjust card styling for mobile */
.team-member {
margin-bottom: 15px !important;
padding: 15px 10px !important;
}
.team-member h4 {
font-size: 16px !important;
}
.team-member p {
font-size: 12px !important;
}
/* Constrain images better on mobile - centered */
.member-img {
width: 100%;
display: flex !important;
align-items: center !important;
justify-content: center !important;
margin: 0 auto 10px !important;
padding: 0 !important;
}
.member-img img {
max-width: 85% !important;
width: auto !important;
height: auto !important;
display: block !important;
margin: 0 auto !important;
}
}
/* Tablet: 3 people per row */
@media (min-width: 768px) and (max-width: 991px) {
#team-members-container .col-md-4 {
flex: 0 0 33.3333%;
max-width: 33.3333%;
}
}
</style>
<!-- Custom Mobile Navbar Fix -->
<style>
/* Custom hamburger menu with red bars */
@media (max-width: 767px) {
.navbar-toggle {
display: block !important;
position: relative !important;
z-index: 10000 !important;
background-color: transparent !important;
border: none !important;
padding: 12px !important;
margin: 10px 15px !important;
float: right !important;
cursor: pointer !important;
pointer-events: auto !important;
width: 50px;
height: 50px;
}
.navbar-toggle .icon-bar {
display: block !important;
width: 30px !important;
height: 4px !important;
background-color: #dc2626 !important;
border-radius: 2px !important;
margin: 5px 0 !important;
transition: all 0.3s ease !important;
}
.navbar-toggle:hover .icon-bar {
background-color: #991b1b !important;
}
.navbar-collapse {
max-height: none !important;
overflow: visible !important;
background-color: #fff !important;
border-top: 2px solid #dc2626 !important;
transform-origin: top;
transition: transform 0.3s ease-out, opacity 0.3s ease-out !important;
}
.navbar-collapse.collapse {
display: block !important;
transform: scaleY(0) !important;
opacity: 0 !important;
max-height: 0 !important;
overflow: hidden !important;
}
.navbar-collapse.collapse.in {
transform: scaleY(1) !important;
opacity: 1 !important;
max-height: 500px !important;
overflow-y: visible !important;
}
}
</style>
</head>
<body>
<div class="navbar navbar-inverse">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse-main" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html"><img src="assets/images/logo.png" alt="EmPACT Lab"></a>
</div>
<div class="collapse navbar-collapse" id="navbar-collapse-main">
<ul class="nav navbar-nav pull-right mainNav">
<li><a href="index.html">Home</a></li>
<li><a href="research.html">Research</a></li>
<li class="active"><a href="people.html">People</a></li>
<li><a href="publication.html">Publication</a></li>
<li><a href="news.html">News</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
</div>
<header id="head" class="secondary">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1>Our Team</h1>
<p>Meet the talented researchers and students at EmPACT Lab</p>
</div>
</div>
</div>
</header>
<!--
=============================================
EASY EDIT PEOPLE DATABASE - Just edit the lists below!
=============================================
Image files should match the name exactly (case-sensitive).
-->
<script>
// People Database - EDIT THIS SECTION ONLY
const peopleData = {
staff: [
{ name: "Gu Zhihao", role: "Research Fellow", research: "Vision for Robotics, Computer Vision", image: "Gu Zhihao.jpg", linkedin: "https://orcid.org/0000-0003-1506-1087", website: "", education: "PHD, Shanghai Jiao Tong University, China" },
{ name: "Liu Mohan", role: "Research Associate", research: "Embodied AI, Robot Learning, Multimodal Learning", image: "Liu Mohan.jpg", linkedin: "https://www.linkedin.com/in/mohan%EF%BC%88lester%EF%BC%89-liu-a26a5a286/", website: "", education: "MSc, National University of Singapore" }
],
phd: [
{ name: "Liu Zinan", role: "PhD", research: "Embodied AI, Computer Vision, Agentic Reasoning", image: "Liu Zinan.jpg", linkedin: "https://www.linkedin.com/in/zinan-liu-650119203", website: "https://github.com/NKLiuZN", education: "B.Eng & MSc, Nanyang Technological University" },
{ name: "ZHANG HAITIAN", role: "PhD", research: "Event-based Vision. Multi-modality", image: "ZHANG HAITIAN.png", linkedin: "", website: "https://github.com/Hatins", education: "Bachelor and Master from Wuhan University" },
{ name: "Nguyen Duy Thai", role: "PhD", research: "3D Perception, Embodied World Model", image: "Nguyen Duy Thai.png", linkedin: "https://www.linkedin.com/in/thai-nd", website: "", education: "BSc, Hanoi University of Science and Technology" },
{ name: "Soumyaratna Debnath", role: "PhD", research: "Human Inspired Vision, Computer Vision", image: "Soumyaratna Debnath.jpg", linkedin: "https://www.linkedin.com/in/soumyaratna/", website: "https://soumyaratnadebnath.github.io", education: "MTech (CSE), Indian Institute of Technology Gandhinagar, India" },
{ name: "Pham Tien Du", role: "PhD", research: "Computer Vision", image: "Pham Tien Du.jpg", linkedin: "https://www.linkedin.com/in/du-pham-3bb304186/", website: "", education: "BSc, Vietnam National University Hanoi" },
{ name: "Hao Shi", role: "Visiting PhD", research: "3D Vision, Robotics", image: "Hao Shi.jpg", linkedin: "", website: "", education: "" }
],
msc: [
{ name: "YU ZE", role: "MSc", research: "Embodied AI, Robot Learning", image: "YU ZE.jpg", linkedin: "", website: "", education: "" },
{ name: "Chen Xuanyu", role: "MSc", research: "Humanoid Locomotion, VLA Models", image: "Chen Xuanyu.png", linkedin: "", website: "", education: "" },
{ name: "CHEN HUITONG", role: "MSc", research: "Event Camera", image: "CHEN HUITONG.jpg", linkedin: "", website: "", education: "" },
{ name: "Dong Ze", role: "MSc", research: "Embodied AI, Large Multimodal Models", image: "Dong Ze.jpg", linkedin: "", website: "", education: "" },
{ name: "Mei Dengchen", role: "MSc", research: "Learning to see and understand the environment in the dark with humanoid robot", image: "Mei Dengchen.jpg", linkedin: "", website: "", education: "" },
{ name: "Shriram Damodaran", role: "M.Eng", research: "Robotics, 3D Vision, Embodied AI", image: "Shriram Damodaran.jpg", linkedin: "https://www.linkedin.com/in/shriram-damodaran-7b0346167", website: "https://github.com/shriram272", education: "B.Tech National Institute of Technology, Jalandhar , India" },
{ name: "Wang Luoxin", role: "MSc", research: "Multimodal Signal Processing", image: "Wang Luoxin.jpg", linkedin: "https://www.linkedin.com/in/luoxin-wang-bb2a53252", website: "", education: "" },
{ name: "XU TIANYI", role: "MSc", research: "Emobodied AI, Multimodal Learning", image: "XU TIANYI.jpg", linkedin: "https://www.linkedin.com/in/tianyi-xu", website: "", education: "" }
],
interns: [
{ name: "Namai", role: "Research Intern", research: "PINN integration with RL and algorithm development", image: "Namai.jpeg", linkedin: "https://www.linkedin.com/in/namaichandra/", website: "https://namaicv.com", education: "Electronic Systems, Indian Institute of Information Technology, Madras" },
{ name: "Lu Jingyi", role: "Intern", research: "Reinforcement Learning, MLLM, CV", image: "Placeholder.png", linkedin: "", website: "", education: "" },
{ name: "XU Lehuai", role: "Intern", research: "Computer Vision", image: "XU Lehuai.jpg", linkedin: "", website: "", education: "BSc, Nanjing University" },
{ name: "Chi Zhang", role: "Research Intern", research: "Deep learning and Embobied AI", image: "Chi Zhang.jpg", linkedin: "", website: "", education: "" },
{ name: "Ke Xianrui", role: "Intern", research: "Physics for AI", image: "Placeholder.png", linkedin: "", website: "", education: "" },
{ name: "Zeqin Yu", role: "Visiting student", research: "Multimedia Forensics and Security", image: "Placeholder.png", linkedin: "", website: "", education: "" }
],
alumni: [
{ name: "Jongsung Lee", role: "Alumni", research: "3D Scene Understanding, 360 Image-based Vision", image: "Jongsung Lee.jpg", linkedin: "https://www.linkedin.com/in/jongsung-lee-892b4227b/", website: "https://syniez.github.io/", education: "BSc, Seoul National University of Science and Technology" },
{ name: "Ankit Kumar Shaw", role: "Alumni", research: "Multimodal Cognitive Intelligence for human-aligned robot perception, reasoning and manipulation", image: "Ankit Kumar Shaw.jpg", linkedin: "https://www.linkedin.com/in/ankit-kumar-shaw-赜帆-57005413a", website: "https://ankit-zefan.github.io", education: "MSc, Tsinghua University" },
{ name: "Bui Duc Manh (Manh Bui)", role: "Alumni", research: "Post-Training for 3D Reasoning Model", image: "Bui Duc Manh.jpg", linkedin: "https://www.linkedin.com/in/duc-manh-bui-9a43ba268/", website: "https://manhbui1208.github.io", education: "Msc, University of Technology Sydney" },
{ name: "Jintao Guo", role: "Alumni", research: "Machine Learning, Model Generalization", image: "Jintao Guo.jpg", linkedin: "https://www.linkedin.com/in/金涛-郭-36ba54392", website: "", education: "" },
{ name: "Oscar Zhang", role: "Alumni", research: "Computer Vision", image: "Oscar Zhang.jpg", linkedin: "https://www.linkedin.com/in/泽同-张-060b78384", website: "", education: "" },
{ name: "Li Haoran", role: "Visiting PhD student", research: "3D vision", image: "Placeholder.png", linkedin: "", website: "", education: "" }
]
}; // Function to generate team member HTML
function generatePeopleHTML() {
const container = document.getElementById('team-members-container');
let html = '';
// Research Staff (Postdocs and RAs)
if (peopleData.staff && peopleData.staff.length > 0) {
html += '<div class="col-md-12"><h3 style="margin-top: 30px; margin-bottom: 20px; color: #333;">Research Staff</h3></div>';
peopleData.staff.forEach(person => {
html += createPersonCard(person);
});
}
// PhD Students (including visiting)
if (peopleData.phd && peopleData.phd.length > 0) {
html += '<div class="col-md-12"><h3 style="margin-top: 30px; margin-bottom: 20px; color: #333;">PhD Students</h3></div>';
peopleData.phd.forEach(person => {
html += createPersonCard(person);
});
}
// Master Students
if (peopleData.msc && peopleData.msc.length > 0) {
html += '<div class="col-md-12"><h3 style="margin-top: 30px; margin-bottom: 20px; color: #333;">Master Students</h3></div>';
peopleData.msc.forEach(person => {
html += createPersonCard(person);
});
}
// Interns and UG Students
if (peopleData.interns && peopleData.interns.length > 0) {
html += '<div class="col-md-12"><h3 style="margin-top: 30px; margin-bottom: 20px; color: #333;">Interns and UG Students</h3></div>';
peopleData.interns.forEach(person => {
html += createPersonCard(person);
});
}
// Alumni
if (peopleData.alumni && peopleData.alumni.length > 0) {
html += '<div class="col-md-12"><h3 style="margin-top: 30px; margin-bottom: 20px; color: #333;">Alumni</h3></div>';
peopleData.alumni.forEach(person => {
html += createPersonCard(person);
});
}
container.innerHTML = html;
}
// Create individual person card
function createPersonCard(person) {
const clickHandler = person.linkedin ? `onclick="window.open('${person.linkedin}', '_blank')"` : '';
const cursorStyle = person.linkedin ? 'cursor: pointer;' : '';
// Build education section if available
const educationHTML = person.education ? `
<p style="font-size: 11px; color: #888; margin: 10px 0 0 0; padding-top: 8px; border-top: 1px solid #e8e8e8; font-style: italic;">
<i class="fa fa-graduation-cap" style="margin-right: 4px; color: #dc2626;"></i>${person.education}
</p>
` : '';
// Build website icon if available
const websiteIcon = person.website ? `
<a href="${person.website}" target="_blank" onclick="event.stopPropagation();" style="display: inline-block; margin-top: 10px; color: #dc2626; text-decoration: none; font-size: 20px; transition: all 0.3s ease;" onmouseover="this.style.color='#991b1b'; this.style.transform='scale(1.1)';" onmouseout="this.style.color='#dc2626'; this.style.transform='scale(1)';">
<i class="fa fa-globe"></i>
</a>
` : '';
return `
<div class="col-md-4">
<div class="team-member" ${clickHandler}
style="background: linear-gradient(to bottom, #ffffff 0%, #f9f9f9 100%); border-radius: 12px; padding: 30px 20px; margin-bottom: 30px; box-shadow: 0 2px 10px rgba(0,0,0,0.08); transition: all 0.3s ease; text-align: center; border: 1px solid #e8e8e8; ${cursorStyle}"
onmouseover="this.style.transform='translateY(-8px)'; this.style.boxShadow='0 8px 20px rgba(0,0,0,0.12)';"
onmouseout="this.style.transform='translateY(0)'; this.style.boxShadow='0 2px 10px rgba(0,0,0,0.08)';">
<div style="width: 160px; height: 160px; margin: 0 auto 20px; overflow: hidden; border-radius: 50%; box-shadow: 0 4px 12px rgba(0,0,0,0.1); position: relative;">
<img src="assets/People_Images/${person.image}" alt="${person.name}" style="width: 100%; height: 100%; object-fit: cover; object-position: center top;">
</div>
<h4 style="margin-bottom: 6px; color: #1a1a1a; font-weight: 600; font-size: 18px;">${person.name}</h4>
<div style="width: 40px; height: 3px; background: linear-gradient(to right, #dc2626, #ef4444); margin: 8px auto 12px; border-radius: 2px;"></div>
<p style="color: #dc2626; margin-bottom: 12px; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;">${person.role}</p>
<p style="font-size: 13px; color: #666; line-height: 1.6; margin: 0;">${person.research}</p>
${educationHTML}
${websiteIcon}
</div>
</div>
`;
}
// Load people when page loads
document.addEventListener('DOMContentLoaded', generatePeopleHTML);
</script>
<section class="container">
<!-- Principal Investigator -->
<div class="row" style="margin-bottom: 40px;">
<div class="col-md-12">
<h2 style="border-bottom: 2px solid #333; padding-bottom: 10px; margin-bottom: 30px;">Principal Investigator</h2>
</div>
<div class="col-md-12">
<div style="background: linear-gradient(to bottom, #ffffff 0%, #f9f9f9 100%); border-radius: 12px; padding: 35px 30px; box-shadow: 0 2px 10px rgba(0,0,0,0.08); border: 1px solid #e8e8e8;">
<div class="row">
<div class="col-md-3 text-center">
<div style="width: 200px; height: 200px; margin: 0 auto; overflow: hidden; border-radius: 50%; box-shadow: 0 4px 12px rgba(0,0,0,0.1);">
<img src="assets/images/Prof.jpg" alt="Addison Lin Wang" style="width: 100%; height: 100%; object-fit: cover; object-position: center top;">
</div>
</div>
<div class="col-md-9">
<h3 style="margin-top: 0; color: #1a1a1a; font-weight: 600;">Addison Lin Wang</h3>
<div style="width: 50px; height: 3px; background: linear-gradient(to right, #dc2626, #ef4444); margin: 10px 0 15px 0; border-radius: 2px;"></div>
<p style="color: #dc2626; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; font-size: 14px; margin-bottom: 8px;">Assistant Professor</p>
<p style="color: #555; margin-bottom: 15px;">School of Electrical and Electronic Engineering, NTU Singapore</p>
<p style="margin-top: 15px; color: #666; line-height: 1.7;">Dr. Wang leads the EmPACT Lab research in embodied perception and interaction, computer vision, and intelligent systems.</p>
</div>
</div>
</div>
</div>
</div>
<!-- Team Members Section - Auto-generated -->
<div class="row" style="margin-bottom: 40px;">
<div class="col-md-12">
<h2 style="border-bottom: 2px solid #333; padding-bottom: 10px; margin-bottom: 30px;">Team Members</h2>
</div>
<div class="col-md-12">
<div id="team-members-container" class="row">
<!-- Team members will be automatically generated here -->
</div>
</div>
</div>
<!-- Join Us Section -->
<div class="row">
<div class="col-md-12 text-center" style="margin-top: 30px; margin-bottom: 50px;">
<h3>Interested in joining our team?</h3>
<p style="margin-bottom: 20px;">We welcome students, researchers, and collaborators passionate about embodied AI and robotics.</p>
<a href="contact.html" class="btn btn-action btn-lg">Contact Us</a>
</div>
</div>
</section>
<footer id="footer">
<div class="container">
<div class="social text-center">
<a href="https://www.linkedin.com/in/addison-lin-wang-62542b222/"><i class="fa fa-linkedin"></i></a>
<a href="https://github.com/vlislab22"><i class="fa fa-github"></i></a>
</div>
</div>
<div class="footer2">
<div class="container">
<div class="row">
<div class="col-md-6 panel">
<div class="panel-body">
<p class="simplenav">
<a href="index.html">Home</a> |
<a href="research.html">Research</a> |
<a href="people.html">People</a> |
<a href="publication.html">Publication</a> |
<a href="news.html">News</a> |
<a href="contact.html">Contact</a>
</p>
</div>
</div>
<div class="col-md-6 panel">
<div class="panel-body">
<p class="text-right">Copyright © 2024 EmPACT Lab, NTU Singapore</p>
</div>
</div>
</div>
</div>
</div>
</footer>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<script src="assets/js/custom.js"></script>
<!-- Custom Mobile Navbar Script -->
<script>
(function() {
var isToggling = false;
function toggleMenu() {
if (isToggling) return;
isToggling = true;
var collapse = document.getElementById('navbar-collapse-main');
if (collapse.classList.contains('in')) {
collapse.classList.remove('in');
} else {
collapse.classList.add('in');
}
setTimeout(function() { isToggling = false; }, 300);
}
window.addEventListener('load', function() {
var toggleBtn = document.querySelector('.navbar-toggle');
if (toggleBtn) {
toggleBtn.addEventListener('click', toggleMenu);
toggleBtn.addEventListener('touchend', function(e) {
e.preventDefault();
toggleMenu();
});
}
// Close menu when clicking on links
var navLinks = document.querySelectorAll('.navbar-collapse a');
for (var i = 0; i < navLinks.length; i++) {
navLinks[i].addEventListener('click', function() {
document.getElementById('navbar-collapse-main').classList.remove('in');
});
}
});
})();
</script>
</body>
</html>