-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (44 loc) · 1.03 KB
/
index.html
File metadata and controls
44 lines (44 loc) · 1.03 KB
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
42
43
44
<!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>