-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest..html
More file actions
358 lines (281 loc) · 16.5 KB
/
test..html
File metadata and controls
358 lines (281 loc) · 16.5 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
<!doctype html>
<html>
<head>
<script src="https://aframe.io/releases/1.3.0/aframe.min.js">
</script>
<script src="https://raw.githack.com/AR-js-org/AR.js/3.4.5/aframe/build/aframe-ar.js">
</script>
</head>
<body style="margin : 0px; overflow: hidden;">
<a-scene embedded
arjs="sourceType: webcam; detectionMode: mono_and_matrix; matrixCodeType: 3x3; trackingMethod: best ; changeMatrixMode: modelViewMatrix; labelingMode:black_region;"
vr-mode-ui="enabled: false"
renderer="sortObjects: true; antialias: true; colorManagement: true; physicallyCorrectLights; logarithmicDepthBuffer: true;"
smooth=" true" smoothCount="5" smoothTolerance=".05" smoothThreshold="5" sourceWidth="800" sourceHeight="600"
displayWidth="1920" displayHeight="1080">
<a-assets>
<img id="m00" src="./images/00.png">
</a-assets>
<a-marker type="barcode" value="0" size="1.5">
<!--
<a-image src="#m00" rotation="90 0 0" width="2" height="2"></a-image>
-->
<a-box color="#143F6B" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 0" side="double" position="0 1.1 0" rotation="270 0 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="1" size="1.5">
<a-box color="#F55353" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 1" side="double" position="0 1.1 0" rotation="270 -90 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="2" size="1">
<a-box color="#FEB139" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 2" side="double" position="0 1.1 0" rotation="270 -90 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="3" size="1">
<a-box color="#F6F54D" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 3" side="double" position="0 1.1 0" rotation="270 -90 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="4" size="1">
<a-box color="#56BBF1" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 4" side="double" position="0 1.1 0" rotation="270 0 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="5" size="1">
<a-box color="#99FFCD" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 5" side="double" position="0 1.1 0" rotation="270 -90 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="6" size="0.5">
<a-box color="#DC143C" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 6" side="double" position="0 1.1 0" rotation="270 90 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="7" size="0.5">
<a-box color="#00FFFF" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 7" side="double" position="0 1.1 0" rotation="270 0 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="8" size="0.5">
<a-box color="#00008B" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 8" side="double" position="0 1.1 0" rotation="270 0 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="9" size="0.5">
<a-box color="#8B008B" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 9" side="double" position="0 1.1 0" rotation="270 180 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="10" size="0.5">
<a-box color="#FF0000" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 10" side="double" position="0 1.1 0" rotation="270 -90 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="11" size="0.5">
<a-box color="#00FF00" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 11" side="double" position="0 1.1 0" rotation="270 0 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="12" size="0.5">
<a-box color="#0000FF" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 12" side="double" position="0 1.1 0" rotation="270 0 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="13" size="0.5">
<a-box color="#FFFF00" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 13" side="double" position="0 1.1 0" rotation="270 0 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="14" size="0.5">
<a-box color="#00FFFF" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 14" side="double" position="0 1.1 0" rotation="270 180 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="15" size="0.5">
<a-box color="#FF00FF" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 15" side="double" position="0 1.1 0" rotation="270 -90 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="16" size="0.5">
<a-box color="#C0C0C0" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 16" side="double" position="0 1.1 0" rotation="270 0 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="17" size="0.5">
<a-box color="#808080" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 17" side="double" position="0 1.1 0" rotation="270 0 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="18" size="0.5">
<a-box color="#FFA500" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 18" side="double" position="0 1.1 0" rotation="270 0 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="19" size="0.5">
<a-box color="#800000" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 19" side="double" position="0 1.1 0" rotation="270 90 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="20" size="0.5">
<a-box color="#008000" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 20" side="double" position="0 1.1 0" rotation="270 0 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="21" size="0.5">
<a-box color="#000080" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 21" side="double" position="0 1.1 0" rotation="270 90 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="22" size="0.25">
<a-box color="#800080" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 22" side="double" position="0 1.1 0" rotation="270 180 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="23" size="0.25">
<a-box color="#FF0000" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 23" side="double" position="0 1.1 0" rotation="270 90 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="24" size="0.25">
<a-box color="#00FF00" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 24" side="double" position="0 1.1 0" rotation="270 90 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="25" size="0.25">
<a-box color="#0000FF" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 25" side="double" position="0 1.1 0" rotation="270 90 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="26" size="0.25">
<a-box color="#FFFF00" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 26" side="double" position="0 1.1 0" rotation="270 -90 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="27" size="0.25">
<a-box color="#00FFFF" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 27" side="double" position="0 1.1 0" rotation="270 0 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="28" size="0.25">
<a-box color="#00008B" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 28" side="double" position="0 1.1 0" rotation="270 90 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="29" size="0.25">
<a-box color="#8B008B" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 29" side="double" position="0 1.1 0" rotation="270 -90 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="30" size="0.25">
<a-box color="#FF0000" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 30" side="double" position="0 1.1 0" rotation="270 0 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="31" size="0.25">
<a-box color="#00FF00" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 31" side="double" position="0 1.1 0" rotation="270 -90 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="32" size="0.25">
<a-box color="#0000FF" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 32" side="double" position="0 1.1 0" rotation="270 180 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="33" size="0.25">
<a-box color="#FFFF00" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 33" side="double" position="0 1.1 0" rotation="270 180 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="34" size="0.25">
<a-box color="#00FFFF" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 34" side="double" position="0 1.1 0" rotation="270 180 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="35" size="0.25">
<a-box color="#FF00FF" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 35" side="double" position="0 1.1 0" rotation="270 180 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="36" size="0.25">
<a-box color="#C0C0C0" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 36" side="double" position="0 1.1 0" rotation="270 -180 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="37" size="0.25">
<a-box color="#808080" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 37" side="double" position="0 1.1 0" rotation="270 180 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="38" size="0.25">
<a-box color="#FFA500" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 38" side="double" position="0 1.1 0" rotation="270 0 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="39" size="0.25">
<a-box color="#800000" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 39" side="double" position="0 1.1 0" rotation="270 0 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="40" size="0.25">
<a-box color="#008000" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 40" side="double" position="0 1.1 0" rotation="270 -90 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="41" size="0.25">
<a-box color="#000080" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 41" side="double" position="0 1.1 0" rotation="270 -90 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="42" size="0.1">
<a-box color="#800080" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 42" side="double" position="0 1.1 0" rotation="270 0 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="43" size="0.1">
<a-box color="#FF0000" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 43" side="double" position="0 1.1 0" rotation="270 0 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="44" size="0.1">
<a-box color="#00FF00" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 44" side="double" position="0 1.1 0" rotation="270 0 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="45" size="0.1">
<a-box color="#0000FF" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 45" side="double" position="0 1.1 0" rotation="270 180 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="46" size="0.1">
<a-box color="#FFFF00" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 46" side="double" position="0 1.1 0" rotation="270 90 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="47" size="0.1">
<a-box color="#00FFFF" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 47" side="double" position="0 1.1 0" rotation="270 -90 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="48" size="0.1">
<a-box color="#00008B" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 48" side="double" position="0 1.1 0" rotation="270 0 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="49" size="0.1">
<a-box color="#8B008B" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 49" side="double" position="0 1.1 0" rotation="270 90 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="50" size="0.1">
<a-box color="#FF0000" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 50" side="double" position="0 1.1 0" rotation="270 -90 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="51" size="0.1">
<a-box color="#00FF00" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 51" side="double" position="0 1.1 0" rotation="270 -90 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="52" size="0.1">
<a-box color="#0000FF" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 52" side="double" position="0 1.1 0" rotation="270 90 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="53" size="0.1">
<a-box color="#FFFF00" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 53" side="double" position="0 1.1 0" rotation="270 -90 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="54" size="0.1">
<a-box color="#00FFFF" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 54" side="double" position="0 1.1 0" rotation="270 90 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="55" size="0.1">
<a-box color="#FF00FF" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 55" side="double" position="0 1.1 0" rotation="270 -90 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="56" size="0.1">
<a-box color="#C0C0C0" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 56" side="double" position="0 1.1 0" rotation="270 0 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="57" size="0.1">
<a-box color="#808080" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 57" side="double" position="0 1.1 0" rotation="270 90 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="58" size="0.1">
<a-box color="#FFA500" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 58" side="double" position="0 1.1 0" rotation="270 0 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="59" size="0.1">
<a-box color="#800000" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 59" side="double" position="0 1.1 0" rotation="270 180 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="60" size="0.1">
<a-box color="#008000" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 60" side="double" position="0 1.1 0" rotation="270 90 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="61" size="0.1">
<a-box color="#000080" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 61" side="double" position="0 1.1 0" rotation="270 0 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="62" size="0.1">
<a-box color="#800080" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 62" side="double" position="0 1.1 0" rotation="270 0 0" align="center"></a-text>
</a-marker>
<a-marker type="barcode" value="63" size="0.1">
<a-box color="#FF0000" depth="1" height="1" width="1"></a-box>
<a-text value="Marker 63" side="double" position="0 1.1 0" rotation="270 180 0" align="center"></a-text>
</a-marker>
<a-camera position="0 0 0" look-controls="enabled: false"></a-camera>
</a-scene>
</body>
</html>