Skip to content

Commit 68c7c8b

Browse files
committed
convert small videos to gifs, pub info
1 parent 23d03fc commit 68c7c8b

8 files changed

Lines changed: 17 additions & 21 deletions

File tree

docs/Content/gifs/AStar.gif

1.47 MB
Loading

docs/Content/gifs/HAStar.gif

647 KB
Loading

docs/Content/gifs/HA_M.gif

1.26 MB
Loading

docs/Content/gifs/IGHAStar.gif

850 KB
Loading
-24.1 MB
Binary file not shown.

docs/index.html

Lines changed: 17 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,8 @@
112112
text-align: center;
113113
display: flex;
114114
flex-direction: column;
115+
padding: 0;
116+
margin: 0;
115117
}
116118

117119
.multi-figure img, .multi-figure object {
@@ -121,8 +123,11 @@
121123
}
122124

123125
.multi-figure > div > img {
124-
height: 300px;
125-
object-fit: contain;
126+
width: 100%;
127+
height: auto;
128+
display: block;
129+
margin: 0;
130+
padding: 0;
126131
}
127132

128133
.table-container {
@@ -218,6 +223,9 @@
218223
<h1 class="title is-1 publication-title"><span style="color: #0050FF;">I</span>ncremental
219224
<span style="color: #0050FF;">G</span>eneralized <span style="color: #0050FF;">H</span>ybrid
220225
<span style="color: #0050FF;">A*</span> (IGHA*)</h1>
226+
<div class="is-size-5 publication-authors" style="margin-top: 0.5rem;">
227+
<span>Accepted to IEEE RA-L, Nov 2025.</span>
228+
</div>
221229
<div class="is-size-5 publication-authors">
222230
<span class="author-block">
223231
<a href="https://sidharthtalia.com">Sidharth Talia</a><sup>1</sup>,</span>
@@ -322,19 +330,13 @@ <h2 class="title is-3 has-text-centered">Abstract</h2>
322330
<div class="figure-container" style="margin: 1.5rem 0;">
323331
<div class="multi-figure">
324332
<div>
325-
<video controls style="width: 100%; border-radius: 8px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);">
326-
<source src="Content/videos/AStar.mp4" type="video/mp4">
327-
Your browser does not support the video tag.
328-
</video>
333+
<img src="Content/gifs/AStar.gif" alt="A* search without any pruning" style="width: 100%; border-radius: 8px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);">
329334
<figcaption style="margin-top: 0.5rem; font-size: 0.85em;">
330335
<b>Fig. 1 (a).</b> A* search without any pruning
331336
</figcaption>
332337
</div>
333338
<div>
334-
<video controls style="width: 100%; border-radius: 8px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);">
335-
<source src="Content/videos/HAStar.mp4" type="video/mp4">
336-
Your browser does not support the video tag.
337-
</video>
339+
<img src="Content/gifs/HAStar.gif" alt="HA* search with grid-based dominance check" style="width: 100%; border-radius: 8px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);">
338340
<figcaption style="margin-top: 0.5rem; font-size: 0.85em;">
339341
<b>Fig. 1 (b).</b> HA* search with grid-based dominance check
340342
</figcaption>
@@ -364,10 +366,10 @@ <h2 class="title is-3 has-text-centered">Abstract</h2>
364366
IGHA* provably matches or outperforms HA*, and has been tested in both simulation and in the real world on a small scale off-road platform (Fig. 3 (a),(b)). Fig. 3 shows a sneak peek of the results we show later.
365367
<div class="figure-container" style="margin: 1.5rem 0;">
366368
<div class="multi-figure">
367-
<div><img src="Content/ighastar_sim.gif" alt="IGHAStar Simulation" style="width: 100%; height: auto; border-radius: 8px;">
369+
<div><img src="Content/gifs/ighastar_sim.gif" alt="IGHAStar Simulation" style="width: 100%; height: auto; border-radius: 8px;">
368370
<figcaption style="margin-top: 0.5rem; font-size: 0.85em;"><b>Fig. 3 (a).</b> Simulation</figcaption>
369371
</div>
370-
<div><img src="Content/ighastar_real.gif" alt="IGHAStar Real-World" style="width: 100%; height: auto; border-radius: 8px;">
372+
<div><img src="Content/gifs/ighastar_real.gif" alt="IGHAStar Real-World" style="width: 100%; height: auto; border-radius: 8px;">
371373
<figcaption style="margin-top: 0.5rem; font-size: 0.85em;"><b>Fig. 3 (b).</b> Real-world testing</figcaption>
372374
</div>
373375
</div>
@@ -438,22 +440,16 @@ <h2 class="title is-3 has-text-centered">Incremental Generalized Hybrid A* (IGHA
438440
</p>
439441

440442
</p>
441-
<div class="figure-container" style="margin: 1.5rem 0;">
443+
<div class="figure-container" style="margin: 0 0;">
442444
<div class="multi-figure">
443445
<div>
444-
<video controls muted loop preload="metadata" style="width: 100%; border-radius: 8px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);">
445-
<source src="Content/videos/HA_M.mp4" type="video/mp4">
446-
Your browser does not support the video tag.
447-
</video>
446+
<img src="Content/gifs/HA_M.gif" alt="HA*M:Only Increase Resolution" style="width: 100%; border-radius: 8px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);">
448447
<figcaption style="margin-top: 0.5rem; font-size: 0.85em;">
449448
<b>Fig. 4 (a).</b> HA*M:Only Increase Resolution
450449
</figcaption>
451450
</div>
452451
<div>
453-
<video controls muted loop preload="metadata" style="width: 100%; border-radius: 8px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);">
454-
<source src="Content/videos/IGHAStar.mp4" type="video/mp4">
455-
Your browser does not support the video tag.
456-
</video>
452+
<img src="Content/gifs/IGHAStar.gif" alt="IGHA*:Increase/Decrease Resolution on the fly" style="width: 100%; border-radius: 8px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);">
457453
<figcaption style="margin-top: 0.5rem; font-size: 0.85em;">
458454
<b>Fig. 4 (b).</b> IGHA*:Increase/Decrease Resolution on the fly
459455
</figcaption>

0 commit comments

Comments
 (0)