Skip to content

Commit e4b9320

Browse files
committed
Added metadata and socials and removed unnecessary code
1 parent 898de2b commit e4b9320

File tree

5 files changed

+64
-66
lines changed

5 files changed

+64
-66
lines changed

app.js

Lines changed: 7 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,13 @@
1-
const videoIframe = document.getElementById("video-iframe");
21
const copyCitationButton = document.getElementById("copy-citation-button");
32

4-
function restartVideo(frameToRestart) {
5-
frameToRestart.src += "?t=1"; // Adding a timestamp to force a reload
6-
setTimeout(function () {
7-
frameToRestart.src = frameToRestart.src.replace("?t=1", ""); // Remove the timestamp after a short delay
8-
}, 200);
9-
}
10-
11-
function copyToClipboard() {
12-
const tempTextArea = document.createElement("textarea");
13-
tempTextArea.value = document.querySelector(".citation").innerText;
14-
document.body.appendChild(tempTextArea);
15-
tempTextArea.select();
16-
tempTextArea.setSelectionRange(0, 99999);
17-
document.execCommand("copy");
18-
document.body.removeChild(tempTextArea);
3+
async function copyToClipboard() {
4+
const text = document.querySelector(".citation").innerText;
5+
try {
6+
await navigator.clipboard.writeText(text);
197
alert("Citation copied to clipboard!");
20-
}
21-
22-
document.addEventListener("DOMContentLoaded", function () {
23-
if (videoIframe.contentWindow) {
24-
videoIframe.contentWindow.addEventListener("message", function (event) {
25-
if (event.data === "ended") {
26-
console.log("CARNATI!");
27-
restartVideo(videoIframe);
28-
}
29-
});
8+
} catch (err) {
9+
console.error("Failed to copy:", err);
3010
}
31-
});
11+
}
3212

3313
copyCitationButton.addEventListener("click", copyToClipboard);
80.9 KB
Loading

imgs/README.md

Lines changed: 0 additions & 24 deletions
This file was deleted.

index.html

Lines changed: 53 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,52 @@
44
<head>
55
<meta charset="UTF-8">
66
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7-
<title>Efficient Self-Supervised Neuro-Analytic Visual Servoing for Real-time
8-
Quadrotor Control</title>
7+
<meta http-equiv="X-UA-Compatible" content="ie=edge">
8+
<meta name="language" content="en">
9+
10+
<title>Efficient Self-Supervised Neuro-Analytic Visual Servoing for Real-time Quadrotor Control</title>
11+
12+
<meta name="description" content="Numerically Stable Efficient Reduced Image-Based Visual Servoing with knowledge distillation for autonomous drone navigation in GPS-denied environments. ICCV 2025">
13+
<meta name="keywords" content="Drone Control, Drone Simulation, Sim vs Real, Digital Twin, Robotics, UAV, Navigation, Detection, Knowledge Distillation, Visual Servoing, IBVS, Autonomous Systems, ICCV 2025">
14+
15+
<!-- TODO: add screenshot from website image here -->
16+
<meta property="og:type" content="website">
17+
<meta property="og:title" content="Efficient Self-Supervised Neuro-Analytic Visual Servoing for Real-time Quadrotor Control">
18+
<meta property="og:site_name" content="NSER-IBVS Drone">
19+
<meta property="og:description" content="Numerically Stable Efficient Reduced Image-Based Visual Servoing with knowledge distillation for autonomous drone navigation in GPS-denied environments. ICCV 2025">
20+
<meta property="og:url" content="https://spacetime-vision-robotics-laboratory.github.io/NSER-IBVS/">
21+
<meta property="og:image" content="https://spacetime-vision-robotics-laboratory.github.io/NSER-IBVS/assets/nser-ibvs-drones-socials.png">
22+
<meta property="og:image:secure_url" content="https://spacetime-vision-robotics-laboratory.github.io/NSER-IBVS/assets/nser-ibvs-drones-socials.png">
23+
<meta property="og:image:width" content="1200">
24+
<meta property="og:image:height" content="630">
25+
<meta property="og:image:alt" content="Presentation Website for Efficient Self-Supervised Neuro-Analytic Visual Servoing for Real-time Quadrotor Control">
26+
<meta property="og:locale" content="en_US">
27+
28+
<!-- TODO: add screenshot from website image here -->
29+
<meta name="twitter:card" content="summary_large_image">
30+
<meta name="twitter:title" content="Efficient Self-Supervised Neuro-Analytic Visual Servoing for Real-time Quadrotor Control">
31+
<meta name="twitter:description" content="Numerically Stable Efficient Reduced Image-Based Visual Servoing with knowledge distillation for autonomous drone navigation in GPS-denied environments. ICCV 2025">
32+
<meta name="twitter:image" content="https://spacetime-vision-robotics-laboratory.github.io/NSER-IBVS/assets/nser-ibvs-drones-socials.png">
33+
<meta name="twitter:image:alt" content="Presentation Website for Efficient Self-Supervised Neuro-Analytic Visual Servoing for Real-time Quadrotor Control">
34+
35+
<meta name="citation_title" content="Efficient Self-Supervised Neuro-Analytic Visual Servoing for Real-time Quadrotor Control">
36+
<meta name="citation_author" content="Sebastian Mocanu">
37+
<meta name="citation_author" content="Sebastian-Ion Nae">
38+
<meta name="citation_author" content="Mihai-Eugen Barbu">
39+
<meta name="citation_author" content="Marius Leordeanu">
40+
<meta name="citation_publication_date" content="2025">
41+
<meta name="citation_conference_title" content="Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV) Workshops">
42+
<meta name="citation_firstpage" content="1744">
43+
<meta name="citation_lastpage" content="1753">
44+
<meta name="citation_pdf_url" content="https://openaccess.thecvf.com/content/ICCV2025W/EVW/papers/Mocanu_Efficient_Self-Supervised_Neuro-Analytic_Visual_Servoing_for_Real-time_Quadrotor_Control_ICCVW_2025_paper.pdf">
45+
46+
<meta name="DC.creator" content="Sebastian Mocanu">
47+
<meta name="DC.subject" content="Drone Control, Drone Simulation, Sim vs Real, Digital Twin, Robotics, UAV, Navigation, Detection, Knowledge Distillation, Visual Servoing, IBVS, Autonomous Systems">
48+
<meta name="DC.description" content="Presentation Website for Efficient Self-Supervised Neuro-Analytic Visual Servoing for Real-time Quadrotor Control">
49+
<meta name="DC.type" content="Text">
50+
<meta name="DC.format" content="text/html">
51+
<meta name="DC.language" content="en">
52+
953
<link rel="stylesheet" href="style.css">
1054

1155
<script async src="https://www.googletagmanager.com/gtag/js?id=G-90M4DDNEBC"></script>
@@ -19,17 +63,15 @@
1963
</head>
2064
<body>
2165
<div class="title">
22-
<h1>Efficient Self-Supervised Neuro-Analytic </h1>
23-
<h2>Visual Servoing for Real-time
24-
Quadrotor Control</h2>
25-
<div class="conference" style="color: #555;">ICCV 2025 - The 21st Embedded Vision Workshop</div>
66+
<h1>Efficient Self-Supervised Neuro-Analytic Visual Servoing for Real-time Quadrotor Control</h1>
67+
<div class="conference">ICCV 2025 - The 21st Embedded Vision Workshop (Oral)</div>
2668
</div>
2769

2870
<div class="authors">
29-
<a href="https://scholar.google.com/citations?user=osyBED4AAAAJ&hl=en" target="_blank" class="author" style="color: #0066cc;">Sebastian Mocanu<sup>1</sup></a>
30-
<a href="https://scholar.google.com/citations?user=VBogtPAAAAAJ&hl=en" target="_blank" class="author" style="color: #0066cc;">Sebastian-Ion Nae<sup>1</sup></a>
31-
<a href="https://scholar.google.com/citations?user=9GlsUHAAAAAJ&hl=en&oi=ao" target="_blank" class="author" style="color: #0066cc;">Mihai Eugen Barbu<sup>1</sup></a>
32-
<a href="https://scholar.google.com/citations?user=se9kni0AAAAJ&hl=en" target="_blank" class="author" style="color: #0066cc;">Marius Leordeanu<sup>1,2,3</sup></a>
71+
<a href="https://scholar.google.com/citations?user=osyBED4AAAAJ&hl=en" target="_blank" class="author">Sebastian Mocanu<sup>1</sup></a>
72+
<a href="https://scholar.google.com/citations?user=VBogtPAAAAAJ&hl=en" target="_blank" class="author">Sebastian-Ion Nae<sup>1</sup></a>
73+
<a href="https://scholar.google.com/citations?user=9GlsUHAAAAAJ&hl=en&oi=ao" target="_blank" class="author">Mihai Eugen Barbu<sup>1</sup></a>
74+
<a href="https://scholar.google.com/citations?user=se9kni0AAAAJ&hl=en" target="_blank" class="author">Marius Leordeanu<sup>1,2,3</sup></a>
3375
</div>
3476

3577
<div class="affiliations">
@@ -41,7 +83,7 @@ <h2>Visual Servoing for Real-time
4183
<div class="links">
4284
<a href="assets/EVW-10_Efficient_Self_Supervised_Neuro_Analytic_Visual_Servoing_for_Real_time_Quadrotor_Control-10.pdf" target="_blank" style="display: inline-block;">Paper</a>
4385
<a href="assets/poster.pdf" target="_blank" style="display: inline-block;">Poster</a>
44-
<span style="display: inline-block; margin: 0 15px; padding: 12px 24px; background: #ccc; color: #666; text-decoration: none; border-radius: 4px; cursor: not-allowed; font-size: 1em; font-weight: 500;">Code (Coming Soon)</span>
86+
<a href="https://github.com/SpaceTime-Vision-Robotics-Laboratory/nser-ibvs-drone" target="_blank" style="display: inline-block;">Code</a>
4587
</div>
4688

4789
<!-- TODO Here also add multiple small videos that auto replay -->

style.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ body {
2121
max-width: 900px;
2222
margin: 0 auto;
2323
padding: 40px 20px;
24-
background-color: #ffffff;
24+
/* background-color: #ffffff; */
2525
color: #333;
2626
}
2727
.title {
2828
text-align: center;
2929
margin: 60px 0 40px 0;
3030
}
3131
.title h1 {
32-
font-size: 3em;
32+
font-size: 2em;
3333
font-weight: normal;
3434
margin: 0 0 20px 0;
3535
color: #222;
@@ -44,9 +44,9 @@ body {
4444
}
4545
.conference {
4646
font-size: 1.2em;
47-
color: #0066cc;
47+
color: #555;
4848
font-weight: 500;
49-
margin-bottom: 40px;
49+
margin-bottom: 0px;
5050
}
5151
.authors {
5252
margin: 30px 0;

0 commit comments

Comments
 (0)