mirror of
https://github.com/ruvnet/RuView.git
synced 2026-08-26 10:05:54 +00:00
* feat(ios): add RuView LiDAR frame protocol * feat(ios): capture ARKit scene depth for RuView * feat(ios): stream compact LiDAR frames over websocket * feat(ios): add native LiDAR capture UI * feat(ios): add RuView LiDAR app entrypoint * feat(web): add LiDAR bridge web package * feat(web): decode RuView LiDAR wire frames * feat(web): add local LiDAR websocket relay * feat(web): add LiDAR browser viewer * feat(web): render live LiDAR point cloud * fix(ios): use wall clock time for LiDAR provenance * feat(web): style LiDAR viewer * test(web): add LiDAR codec tests * docs: add iPhone LiDAR integration guide * docs(adr): define iPhone LiDAR sensor bridge * fix(ios): harden and validate LiDAR bridge * fix(ios): qualify LiDAR wire depth type
37 lines
997 B
HTML
37 lines
997 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1,viewport-fit=cover" />
|
|
<title>RuView iPhone LiDAR</title>
|
|
<link rel="stylesheet" href="./styles.css" />
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<header>
|
|
<div>
|
|
<p class="eyebrow">RUVIEW SENSOR BRIDGE</p>
|
|
<h1>iPhone LiDAR</h1>
|
|
</div>
|
|
<span id="status">CONNECTING</span>
|
|
</header>
|
|
|
|
<section class="metrics">
|
|
<div><strong id="fps">0.0</strong><span>FPS</span></div>
|
|
<div><strong id="points">0</strong><span>POINTS</span></div>
|
|
<div><strong id="seq">0</strong><span>SEQ</span></div>
|
|
<div><strong id="latency">0</strong><span>MS</span></div>
|
|
</section>
|
|
|
|
<canvas id="view"></canvas>
|
|
|
|
<footer>
|
|
<span>Geometry only</span>
|
|
<span>No RGB upload</span>
|
|
<span id="sensor">Waiting for sensor</span>
|
|
</footer>
|
|
</main>
|
|
<script type="module" src="./app.mjs"></script>
|
|
</body>
|
|
</html>
|