forked from rdmilligan/SaltwashAR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmarkerdatabase.py
24 lines (19 loc) · 994 Bytes
/
markerdatabase.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Copyright (C) 2015 Ross D Milligan
# GNU GENERAL PUBLIC LICENSE Version 3 (full notice can be found at https://github.com/rdmilligan/SaltwashAR)
from constants import *
# marker table
MARKER_TABLE = [[[[0, 1, 0, 1, 0, 0, 0, 1, 1],[0, 0, 1, 1, 0, 1, 0, 1, 0],[1, 1, 0, 0, 0, 1, 0, 1, 0],[0, 1, 0, 1, 0, 1, 1, 0, 0]], ROCKY_ROBOT],[[[1, 0, 0, 0, 1, 0, 1, 0, 1],[0, 0, 1, 0, 1, 0, 1, 0, 1],[1, 0, 1, 0, 1, 0, 0, 0, 1],[1, 0, 1, 0, 1, 0, 1, 0, 0]], SPORTY_ROBOT]]
# match marker pattern to database record
def match_marker_pattern(marker_pattern):
marker_found = False
marker_rotation = None
marker_name = None
for marker_record in MARKER_TABLE:
for idx, val in enumerate(marker_record[0]):
if marker_pattern == val:
marker_found = True
marker_rotation = idx
marker_name = marker_record[1]
break
if marker_found: break
return (marker_found, marker_rotation, marker_name)