-
Notifications
You must be signed in to change notification settings - Fork 0
/
aruco.py
156 lines (132 loc) · 5.24 KB
/
aruco.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
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
# Sources:
# https://github.com/njanirudh
import cv2
import cv2.aruco as aruco
import numpy as np
import math
# import tag
# import endEffector
#Colors
blue = (255, 0, 0)
green = (0, 255, 0)
red = (0, 0, 255)
EndEffectorID = 1
EndEffectPresent = False
BoundBoxSize = 0.40
cap = cv2.VideoCapture(0)
def getDistance(point1, point2):
return int(math.sqrt(((point1[0]-point2[0])**2)+((point1[1]-point2[1])**2))) #distance between two points
#Source
''' Import Calibration Data Source: https://github.com/njanirudh/Aruco_Tracker/blob/master/extract_calibration.py'''
# File storage in OpenCV
cv_file = cv2.FileStorage("E:\WPI\Semester-2(Spring)\Motion planning\project\nursing-motion-planning-master\test.py", cv2.FILE_STORAGE_READ)
# Note : we also have to specify the type
# to retrieve otherwise we only get a 'None'
# FileNode object back instead of a matrix
camera_matrix = cv_file.getNode("camera_matrix").mat()
dist_matrix = cv_file.getNode("dist_coeff").mat()
cv_file.release()
''' Aruco Tracking '''
# set dictionary size depending on the aruco marker selected
aruco_dict = aruco.Dictionary_get(aruco.DICT_6X6_100)
# font for displaying text (below)
font = cv2.FONT_HERSHEY_SIMPLEX
while (True):
ret, frame = cap.read()
# operations on the frame
gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
# detector parameters can be set here (List of detection parameters[3])
parameters = aruco.DetectorParameters_create()
parameters.adaptiveThreshConstant = 10
# lists of ids and the corners belonging to each id
corners, ids, rejectedImgPoints = aruco.detectMarkers(gray, aruco_dict, parameters=parameters)
# check if the ids list is not empty
# if no check is added the code will crash
if np.all(ids != None):
# draw a square around the markers
aruco.drawDetectedMarkers(frame, corners)
# indentify poses
rvecs, tvecs, _objPoints = aruco.estimatePoseSingleMarkers(corners, 0.053, camera_matrix, dist_matrix)
#check for end effector
EndEffectPresent = False
EndEffectorCenter = 0
EndEffectorRadius = 0
for i in range(0, ids.size):
if ids[i][0] == EndEffectorID:
#Set Flag
EndEffectPresent = True
#Find Center
sumX = 0
sumY = 0
for point in corners[i][0]:
sumX += point[0]
sumY += point[1]
EndEffectorCenter = (int(sumX/4), int(sumY/4))
#Set Radius
corner1 = corners[i][0][0]
EndEffectorRadius = getDistance(EndEffectorCenter, corner1)
#Draw Circle
cv2.circle(frame, EndEffectorCenter, EndEffectorRadius, blue, thickness=2)
# Draw axis
aruco.drawAxis(frame, camera_matrix, dist_matrix, rvecs[i], tvecs[i], 0.053)
#Remove from ids and corners
ids = np.delete(ids, i, 0)
corners = np.delete(corners, i, 0)
#exit loop
break
# Locate all lther markers
for i in range(0, ids.size):
box = []
sumX = 0
sumY = 0
#find center of marker
for point in corners[i][0]:
sumX += point[0]
sumY += point[1]
center = (int(sumX/4), int(sumY/4))
#extend bounding square
for point in corners[i][0]:
newX = point[0] + ((point[0] + center[0])*BoundBoxSize)
newY = point[1] + ((point[1] + center[1])*BoundBoxSize)
point_to_center = getDistance(point, center)
newX = point[0]
newY = point[1]
box = box + [[newX, newY]]
box = np.array([box])
box = np.int32(box)
#find bound radius
radius = 0
for tagCorner in box[0]:
toCenter = getDistance(center, tagCorner)
if toCenter > radius:
radius = toCenter
#Check for end effector
color = green
if (EndEffectPresent):
distance = getDistance(center, EndEffectorCenter)
if (distance < (radius + EndEffectorRadius)):
color = red
else:
color = green
else:
color = green
#print square/Circle
# cv2.polylines(frame, box, True, color, thickness=2)
cv2.circle(frame, center, radius, color, thickness=2)
# Draw axis
aruco.drawAxis(frame, camera_matrix, dist_matrix, rvecs[i], tvecs[i], 0.053)
# code to show ids of the marker found
strg = ''
for i in range(0, ids.size):
strg += str(ids[i][0])+', '
cv2.putText(frame, "Id: " + strg, (0,64), font, 1, (0,255,0),2,cv2.LINE_AA)
else:
# code to show 'No Ids' when no markers are found
cv2.putText(frame, "No Ids", (0,64), font, 1, (0,255,0),2,cv2.LINE_AA)
# display the resulting frame
cv2.imshow('frame',frame)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
# When everything done, release the capture
cap.release()
cv2.destroyAllWindows()