Skip to content

Commit 34898eb

Browse files
authored
Merge pull request #41 from dasc-lab/add_2025_info
Support multiple news related features
2 parents 35d497d + e6c8c6f commit 34898eb

15 files changed

+81
-9
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
layout: news
3+
title: Prof. Panagou Delivers <span style="color:red"><strong>Plenary Talk</strong></span> at <strong>CDC</strong> 2024
4+
date: 2024-12-17
5+
---
6+
7+
Prof. Dimitra Panagou gave a plenary talk at CDC 2024! In addition, our lab contributed four paper presentations at the conference.
8+
9+
Check out the talk [here](https://www.ieeecss.org/presentation/conference-plenary-lecture/towards-safe-and-resilient-autonomy-using-synergistic)
10+
11+
| |
12+
|:---:|
13+
| ![Prof. Panagou delivering the plenary talk ](/images/2024-cdc-plenary.jpg) |

content/news/2024-cdc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: news
3-
title: "Four papers accepted at CDC 2024!"
3+
title: "Four papers accepted at <strong>CDC</strong> 2024"
44
date: 2024-07-24
55
---
66

content/news/2024-perceivability-best-paper.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: news
3-
title: "IEEE TCAC Best Student Paper Award"
3+
title: Our paper won IEEE TCAC <span style="color:red"><strong>Best Student Paper Award</strong>!</span>
44
date: 2024-07-14
55
---
66

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
layout: news
3+
title: "Prof. Panagou Delivers <strong>Keynote</strong> Talk at <strong>ICRA</strong> 2025"
4+
date: 2025-05-22
5+
---
6+
7+
Prof. Dimitra Panagou gave a keynote talk at ICRA 2025, focusing on multi robot systems. In addition, our lab contributed two conference papers and two workshop papers.
8+
9+
| |
10+
|:---:|
11+
| ![Prof. Panagou delivering the keynote talk at ICRA 2025](/images/2025-icra-keynote-1.jpg) |
12+
13+
| | |
14+
|:---:|:---:|
15+
| ![](/images/2025-icra-conference.jpg) | ![](/images/2025-icra-keynote-2.jpg) |

content/news/2025-icra.md renamed to content/news/2025-icra-paper.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: news
3-
title: "Two papers accepted at ICRA 2025!"
3+
title: "Two papers accepted at <strong>ICRA</strong> 2025"
44
date: 2025-01-27
55
---
66

content/news/2025-rss-paper.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
layout: news
3+
title: "Our paper on Certifiably-Correct Mapping is accepted at <strong>RSS</strong> 2025"
4+
date: 2025-04-11
5+
---
6+
7+
Our paper ["Certifiably-Correct Mapping for Safe Navigation Despite Odometry Drift"](/papers/2025-certifiably-correct.md) has been accepted to RSS 2025!
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
layout: papers
3+
title: "Certifiably-Correct Mapping for Safe Navigation Despite Odometry Drift"
4+
date: 2025-06-29
5+
image: /images/2025-certifiably-correct.gif
6+
venue: "RSS 2025"
7+
authors:
8+
- devanshagrawal
9+
- taekyungkim
10+
- Rajiv Govindjee
11+
- trushantadeshara
12+
- Jiangbo Yu
13+
- Anuerkha Ravikumar
14+
- dimitrapanagou
15+
projectpage: https://www.taekyung.me/certifiably-correct-mapping
16+
arxiv: https://arxiv.org/abs/2504.18713
17+
code: https://github.com/dasc-lab/certifiably-correct-mapping
18+
video: https://youtu.be/qMlDK7Iou48
19+
abstract: "Accurate perception, state estimation and mapping are essential for safe robotic navigation as planners and controllers rely on these components for safety-critical decisions. However, existing mapping approaches often assume perfect pose estimates, an unrealistic assumption that can lead to incorrect obstacle maps and therefore collisions. This paper introduces a framework for certifiably-correct mapping that ensures that the obstacle map correctly classifies obstacle-free regions despite the odometry drift in vision-based localization systems (VIO/SLAM). By deflating the safe region based on the incremental odometry error at each timestep, we ensure that the map remains accurate and reliable locally around the robot, even as the overall odometry error with respect to the inertial frame grows unbounded.
20+
Our contributions include two approaches to modify popular obstacle mapping paradigms, (I) Safe Flight Corridors, and (II) Signed Distance Fields. We formally prove the correctness of both methods, and describe how they integrate with existing planning and control modules. Simulations using the Replica dataset highlight the efficacy of our methods compared to state-of-the-art techniques. Real-world experiments with a robotic rover show that, while baseline methods result in collisions with previously mapped obstacles, the proposed framework enables the rover to safely stop before potential collisions."
21+
---

layouts/_default/list.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{{ define "main" }}
22

33

4-
<h1>{{ .Title }}</h1>
4+
<h1>{{ .Title | safeHTML }}</h1>
55

66
{{/* <p class="d-none"> Rendered from layouts/_defaults/list </p> */}}
77

@@ -22,7 +22,7 @@ <h1>{{ .Title }}</h1>
2222
</div>
2323

2424
<div class="col-md-9">
25-
<a href="{{ .RelPermalink }}"> <h5>{{ .Title }}</h5></a>
25+
<a href="{{ .RelPermalink }}"> <h5>{{ .Title | safeHTML }}</h5></a>
2626
</div>
2727
</div>
2828

layouts/index.html

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,20 @@ <h1>{{ .Site.Title }}</h1>
99
<p>
1010
The Distributed Autonomous Systems and Control Laboratory (3010 Ford Robotics Building) is directed by Dimitra Panagou.</p>
1111

12-
<p>The labs research focuses on advancing planning, learning, and control methods for autonomous robotic systems, with a strong emphasis on safety, resilience, and provable guarantees. We address real-world challenges in robotics, including multi-agent, networked, and sensor-based systems, operating in uncertain, dynamic, or adversarial environments. Our interests include nonlinear systems, estimation, risk-aware decision making, uncertainty quantification, and control under constraints, with applications across aerial, ground, marine, and space domains.</p>
12+
<p>The lab's research focuses on advancing planning, learning, and control methods for autonomous robotic systems, with a strong emphasis on safety, resilience, and provable guarantees. We address real-world challenges in robotics, including multi-agent, networked, and sensor-based systems, operating in uncertain, dynamic, or adversarial environments. Our interests include nonlinear systems, estimation, risk-aware decision making, learning-based control, uncertainty quantification, and control under constraints, with applications across aerial, ground, marine, and space domains.</p>
1313

1414
<p>If you are interested to join our lab, get in touch with Prof. Panagou or some of the PhD lab members. </p>
1515

1616
</div>
1717

1818
<div class="py-3">
1919
<a href="/news"><h3>News</h3></a>
20-
<ul>
20+
<ul style="padding-left: 40px;">
2121
{{ range first 10 (where .Site.RegularPages "Type" "news") }}
22-
<li> {{ .Date | time.Format ":date_medium" }}: <a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
22+
<li>
23+
<span style="display: inline-block; width: 120px;">{{ .Date | time.Format ":date_medium" }}:</span>
24+
<a href="{{ .RelPermalink }}">{{ .Title | safeHTML }}</a>
25+
</li>
2326
{{end}}
2427
</ul>
2528
<a href="/news">

layouts/news/single.html

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,23 @@
11
{{ define "main" }}
22

3-
<h1>{{ .Title }}</h1>
3+
<h1>{{ .Title | safeHTML }}</h1>
44

55
{{/* <p class="d-none"> Rendered from /layouts/news/single.html </p> */}}
66

7+
<style>
8+
.news-content table {
9+
width: 80% !important;
10+
margin: 20px auto !important;
11+
}
12+
.news-content table img {
13+
max-width: 100% !important;
14+
height: auto !important;
15+
}
16+
</style>
17+
18+
<div class="news-content">
719
{{ .Content }}
20+
</div>
821

922
<div class="my-3">
1023
<h2>Related Papers</h2>

0 commit comments

Comments
 (0)