Skip to content

Commit 3f1c407

Browse files
committed
add author list and justify abstract
1 parent 2696b96 commit 3f1c407

File tree

2 files changed

+63
-3
lines changed

2 files changed

+63
-3
lines changed

website_node/public/assets/css/main.css

Lines changed: 45 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -304,6 +304,38 @@ button {
304304
/* backdrop-filter: blur(2px); */
305305
}
306306

307+
/* Authors Section */
308+
.authors-section {
309+
margin: 100px 0 10px 0;
310+
text-align: center;
311+
width: 100%;
312+
padding: 0 5px;
313+
}
314+
315+
.authors-list {
316+
display: flex;
317+
flex-wrap: wrap;
318+
justify-content: center;
319+
gap: 5px 45px;
320+
max-width: 1200px;
321+
margin: 0 auto;
322+
}
323+
324+
.author-name {
325+
font-size: 20px;
326+
font-weight: 600;
327+
color: #868686;
328+
text-decoration: none;
329+
transition: color 0.3s ease, transform 0.2s ease;
330+
display: inline-block;
331+
}
332+
333+
.author-name:hover {
334+
color: #2c2c2c;
335+
text-decoration: underline;
336+
transform: translateY(-2px);
337+
}
338+
307339
/* Logo Section */
308340
.logo-section {
309341
width: 150%;
@@ -348,12 +380,15 @@ button {
348380
}
349381

350382
.section-description {
351-
font-size: 15px;
383+
font-size: 18px;
352384
font-family: 'Arial', sans-serif;
353385
font-weight: 400;
354-
line-height: 21px;
386+
line-height: 25px;
355387
color: #6e6e6e;
356388
width: 100%;
389+
text-align: justify;
390+
margin: 0 70px;
391+
max-width: 1000px;
357392
}
358393

359394
/* Stats Grid */
@@ -953,6 +988,10 @@ button {
953988
font-size: 20px;
954989
}
955990

991+
.author-name {
992+
font-size: 15px;
993+
}
994+
956995
.section-title {
957996
font-size: 48px;
958997
}
@@ -1002,6 +1041,10 @@ button {
10021041
font-size: 40px;
10031042
}
10041043

1044+
.author-name {
1045+
font-size: 22px;
1046+
}
1047+
10051048
.section-title {
10061049
font-size: 60px;
10071050
}

website_node/public/pages/esk.html

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,23 @@
4343

4444
<!-- Hero Section -->
4545
<h1 class="hero-title">The EPFL-Smart Kitchen</h1>
46+
47+
<!-- Authors Section -->
48+
<section class="authors-section">
49+
<div class="authors-list">
50+
<a href="https://people.epfl.ch/andy.bonnetto" target="_blank" class="author-name">Bonnetto Andy</a>
51+
<a href="https://people.epfl.ch/haozhe.qi" target="_blank" class="author-name">Haozhe Qi</a>
52+
<a href="https://people.epfl.ch/franklin.leong" target="_blank" class="author-name">Franklin Leong</a>
53+
<a href="https://people.epfl.ch/matea.tashkovska" target="_blank" class="author-name">Matea Tashkovska</a>
54+
<a href="https://radmahdi.github.io/Home.html" target="_blank" class="author-name">Mahdi Rad</a>
55+
<a href="https://people.epfl.ch/solaiman.shokur" target="_blank" class="author-name">Solaiman Shokur</a>
56+
<a href="https://people.epfl.ch/friedhelm.hummel" target="_blank" class="author-name">Friedhelm Hummel</a>
57+
<a href="https://people.epfl.ch/silvestro.micera" target="_blank" class="author-name">Silvestro Micera</a>
58+
<a href="https://inf.ethz.ch/people/person-detail.pollefeys.html" target="_blank" class="author-name">Marc Pollefeys</a>
59+
<a href="https://people.epfl.ch/alexander.mathis" target="_blank" class="author-name">Mathis Alexander</a>
60+
</div>
61+
</section>
62+
4663
<section class="hero-section">
4764
<video autoplay muted loop class="hero-video">
4865
<source src="../assets/images/merged_compressed.mp4" type="video/mp4">
@@ -60,7 +77,7 @@ <h1 class="hero-title">The EPFL-Smart Kitchen</h1>
6077
<!-- Behavior Understanding Section -->
6178
<section class="behavior-section" id="overview">
6279
<div class="behavior-content">
63-
<h2 class="section-title">Behavior understanding !</h2>
80+
<h2 class="section-title">Behavior understanding!</h2>
6481
<p class="section-description">
6582
Understanding behavior requires datasets that capture humans while carrying out complex tasks. The kitchen is an excellent environment for assessing human motor and cognitive function, as many complex actions are naturally exhibited in kitchens from chopping to cleaning. Here, we introduce the EPFL-Smart-Kitchen-30 dataset, collected in a noninvasive motion capture platform inside a kitchen environment. Nine static RGB-D cameras, inertial measurement units (IMUs) and one head-mounted HoloLens~2 headset were used to capture 3D hand, body, and eye movements. The EPFL-Smart-Kitchen-30 dataset is a multi-view action dataset with synchronized exocentric, egocentric, depth, IMUs, eye gaze, body and hand kinematics spanning 29.7 hours of 16 subjects cooking four different recipes. Action sequences were densely annotated with 33.78 action segments per minute. Leveraging this multi-modal dataset, we propose four benchmarks to advance behavior understanding and modeling through 1) a vision-language benchmark, 2) a semantic text-to-motion generation benchmark, 3) a multi-modal action recognition benchmark, 4) a pose-based action segmentation benchmark. We expect the EPFL-Smart-Kitchen-30 dataset to pave the way for better methods as well as insights to understand the nature of ecologically-valid human behavior.
6683
</p>

0 commit comments

Comments
 (0)