-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (41 loc) · 1.01 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<link
href="/favicon-dark.svg"
rel="icon"
type="image/svg+xml"
/>
<meta charset="UTF-8" />
<meta
content="width=device-width, initial-scale=1.0"
name="viewport"
/>
<meta
content="https://fast.dyum.in"
property="og:url"
/>
<meta
content="Real-time FAST corner detection using camera stream | dyum.in"
property="og:title"
/>
<meta
content="This application processes camera stream in real time using Javascript or WebAssembley to detect corner points using FAST algorithm"
property="og:description"
/>
<meta
content="/favicon-dark.svg"
property="og:image"
/>
<meta
content="/favicon-dark.svg"
property="twitter:image"
/>
<title>Real-time FAST corner detector demo | dyum.in</title>
</head>
<body>
<div id="app"></div>
<script src="/src/main.ts" type="module"></script>
<script src="wasm_exec.js"></script>
</body>
</html>