-
Notifications
You must be signed in to change notification settings - Fork 2
/
markergen.html
33 lines (30 loc) · 1.36 KB
/
markergen.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width" />
<title>Aruco Marker Generator</title>
</head>
<body>
<div id="content" style="width:450px; margin:0 auto;">
<h1>Aruco Marker Generator</h1>
<form action="marker.html" method="get" name="input">
This form will create an HTML page containing a marker that is
compatible with the Aruco marker detection algorithm.<br />
<b><br /></b>
<b>Marker Id: </b>the unique id that will be encoded in the marker image. <br />
<b>Marker Size: </b>the edge size of the black box containing the marker. <br />
<b>Marker Padding:</b> the thickness of the white border surrounding the marker. <br />
<br />
<b>Note:</b> <i>It is important to print the entire HTML page that is generated,
printing just the image may result in a marker of incorrect dimensions.</i><br />
<br />
Marker Id: <input name="id" type="text" /><br />
Marker Size (mm): <input name="size_mm" type="text" value="100" /><br />
Marker Padding (mm): <input name="padding_mm" type="text" value="10" /><br /><br/>
<input type="submit" value="Generate Marker" />
</form>
</div>
</body>
</html>