forked from nickw1/orb-slam-expts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
23 lines (22 loc) · 892 Bytes
/
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
<!DOCTYPE html>
<!-- Experimenting with sending the video stream to C++. Will be used as a
starting point for playing around with ORB-SLAM. Based on PTAM experiments
C++ is in ocvcpp directory. -->
<html>
<head>
<title>orb-slam test</title>
</head>
<body>
<h1>ORB-SLAM Test - Please use landscape</h1>
<div id='status' style='width: 640px; background-color: black; color: white; font-size: 120%; margin-bottom: 10px'></div>
<video id='video1' width='640' height='480'></video>
<canvas id='canvas1' width='640' height='480' style='display: none'></canvas>
<div>
<input type="button" id='start' value="Start Tracking" />
<input type="button" id='stop' value="Stop Tracking" disabled />
<input type="button" id='cleanup' value="Cleanup" />
</div>
<script type='text/javascript' src='wasm/orb_wasm.js'></script>
<script type='text/javascript' src='index.js'></script>
</body>
</html>