-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
22 lines (22 loc) · 1.05 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
<html>
<head>
<script src="https://aframe.io/releases/1.4.1/aframe.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/mindar-image-aframe.prod.js"></script>
<!-- import ONNXRuntime Web from CDN -->
<script src="https://cdn.jsdelivr.net/npm/onnxruntime-web/dist/ort.min.js"></script>
<!-- import ONNXRuntime Web from CDN -->
<script src="js/u2net-component.js"></script>
</head>
<body>
<a-scene u2net="uiText: Loading cool experience...; nnModel: models/u2netp_default.onnx"
mindar-image="imageTargetSrc: https://cdn.jsdelivr.net/gh/hiukim/[email protected]/examples/image-tracking/assets/band-example/band.mind;"
vr-mode-ui="enabled: false" device-orientation-permission-ui="enabled: false">
<a-entity mindar-image-target="targetIndex: 0">
<a-plane id="u2netPlane" width="1" height="1" scale="0 0 0" material="">
<img id="capturedImage" src=""/>
</a-plane>
</a-entity>
<a-camera position="0 0 0" look-controls="enabled: false"></a-camera>
</a-scene>
</body>
</html>