|
25 | 25 | I am a computer scientist with a background in human-centric 3D Computer Vision. |
26 | 26 | I previously worked as a tech lead in the executive team of the <a href="https://ai.ethz.ch/">ETH AI Center</a> and as postdoc at the <a href="https://ait.ethz.ch/">AIT Lab</a> at ETH Zurich, Department of Computer Science. |
27 | 27 | I obtained my PhD in the AIT Lab under superivsion of <a href="https://ait.ethz.ch/people/hilliges/">Prof. Otmar Hilliges</a>, co-advised by <a href="https://cgl.ethz.ch/people/grossm/">Prof. Markus Gross</a>. |
28 | | - I have completed my MSc at ETH Zurich with Prof. Hilliges as well and earned my BSc in Computer Science from the University of Basel under the supervision of <a href="https://scholar.google.com/citations?user=HKLgZpYAAAAJ&hl=de">Prof. Thomas Vetter</a>. |
| 28 | + I have completed my MSc at ETH Zurich in the AIT lab and earned my BSc in Computer Science from the University of Basel under the supervision of <a href="https://scholar.google.com/citations?user=HKLgZpYAAAAJ&hl=de">Prof. Thomas Vetter</a>. |
29 | 29 | </p> |
30 | 30 | <p class="justified"> |
31 | 31 | I taught <a href="https://ait.ethz.ch/teaching/courses/2025-ss-machine-perception">Machine Perception</a> at ETH Zurich. All lecture materials including video recordings from 2025 are publicly available. |
@@ -125,7 +125,7 @@ <h2>Research</h2> |
125 | 125 | <!-- ODHSR --> |
126 | 126 | <tr> |
127 | 127 | <td style="padding:16px;width:25%;vertical-align:middle"> |
128 | | -<video width="160" autoplay loop muted playsinline> |
| 128 | +<video width="160" loop muted playsinline> |
129 | 129 | <source src="images/odhsr.mp4" type="video/mp4"> |
130 | 130 | </video> |
131 | 131 | </td> |
@@ -185,7 +185,7 @@ <h2>Research</h2> |
185 | 185 | <!-- ReLoo --> |
186 | 186 | <tr> |
187 | 187 | <td style="padding:16px;width:25%;vertical-align:middle"> |
188 | | -<video width="160" autoplay loop muted playsinline> |
| 188 | +<video width="160" loop muted playsinline> |
189 | 189 | <source src="images/reloo.mp4" type="video/mp4"> |
190 | 190 | </video> |
191 | 191 | </td> |
@@ -218,7 +218,7 @@ <h2>Research</h2> |
218 | 218 | <!-- WorldPose --> |
219 | 219 | <tr> |
220 | 220 | <td style="padding:16px;width:25%;vertical-align:middle"> |
221 | | -<video width="160" autoplay loop muted playsinline> |
| 221 | +<video width="160" loop muted playsinline> |
222 | 222 | <source src="images/worldpose.mp4" type="video/mp4"> |
223 | 223 | </video> |
224 | 224 | </td> |
@@ -254,7 +254,7 @@ <h2>Research</h2> |
254 | 254 | <!-- HSR --> |
255 | 255 | <tr> |
256 | 256 | <td style="padding:16px;width:25%;vertical-align:middle"> |
257 | | -<video width="160" autoplay loop muted playsinline> |
| 257 | +<video width="160" loop muted playsinline> |
258 | 258 | <source src="images/hsr.mp4" type="video/mp4"> |
259 | 259 | </video> |
260 | 260 | </td> |
@@ -289,7 +289,7 @@ <h2>Research</h2> |
289 | 289 | <!-- MultiPly --> |
290 | 290 | <tr> |
291 | 291 | <td style="padding:16px;width:25%;vertical-align:middle"> |
292 | | -<video width="160" autoplay loop muted playsinline> |
| 292 | +<video width="160" loop muted playsinline> |
293 | 293 | <source src="images/multiply.mp4" type="video/mp4"> |
294 | 294 | </video> |
295 | 295 | </td> |
@@ -641,5 +641,13 @@ <h2>Academic Service</h2> |
641 | 641 | </td> |
642 | 642 | </tr> |
643 | 643 | </tbody></table> |
| 644 | +<script> |
| 645 | + document.querySelectorAll('tr').forEach(function(row) { |
| 646 | + var video = row.querySelector('video'); |
| 647 | + if (!video) return; |
| 648 | + row.addEventListener('mouseenter', function() { video.play(); }); |
| 649 | + row.addEventListener('mouseleave', function() { video.pause(); video.currentTime = 0; }); |
| 650 | + }); |
| 651 | +</script> |
644 | 652 | </body> |
645 | 653 | </html> |
0 commit comments