This repository has been archived by the owner on Aug 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (48 loc) · 1.47 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
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>JSARToolKit5 examples</title>
<style>
html, body {
background: #fff;
color: #000;
font-family: sans-serif;
}
.example {
display: inline-block;
width: 260px;
min-height: 120px;
padding: 20px;
border: 1px solid #ccc;
vertical-align: top;
margin: 10px;
}
</style>
</head>
<body>
<div>
<a href="doc/index.html">Docs on JSARToolKit5</a>
</div>
<h2>Canvas debug examples</h2>
<div class="example">
<a href="simple_rtc.html">
Camera debug marker detection
</a>
<p>Uses device camera.
<p>Displays detected potential marker squares in debug output.
</div>
<h2>Three.js examples</h2>
<div class="example">
<a href="pattern_and_barcode_threejs.html">
Mixed pattern and barcode marker tracking
</a>
<p>Uses device camera.
<p>Use
<a href="https://github.com/artoolkit/artoolkit5/blob/master/doc/patterns/Matrix%20code%203x3%20(72dpi)/5.png">3x3 marker id 5</a>,
<a href="https://github.com/artoolkit/artoolkit5/blob/master/doc/patterns/Matrix%20code%203x3%20(72dpi)/20.png">3x3 marker id 20</a>,
<a href="https://github.com/artoolkit/artoolkit5/blob/master/doc/patterns/Hiro%20pattern.pdf">Hiro pattern</a> and <a href="https://github.com/artoolkit/artoolkit5/blob/master/doc/patterns/Kanji%20pattern.pdf">Kanji pattern</a>
</div>
</body>
</html>