-
Notifications
You must be signed in to change notification settings - Fork 0
/
imu.py
379 lines (328 loc) · 12.3 KB
/
imu.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
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
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
########################################################################
#
#
# Inertial Measurement Unit
# imu.py
#
# MAIN
#
# Copyright (C) 2010 Ulrik Hoerlyk Hjort
#
# Inertial Measurement Unit is free software; you can redistribute it
# and/or modify it under terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2,
# or (at your option) any later version.
# Inertial Measurement Unit is distributed in the hope that it will be
# useful, but WITHOUT ANY WARRANTY; without even the implied warranty
# of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the GNU General Public License for more details.
# You should have received a copy of the GNU General
# Public License distributed with Yolk. If not, write to the Free
# Software Foundation, 51 Franklin Street, Fifth Floor, Boston,
# MA 02110 - 1301, USA.
########################################################################
import matplotlib.pyplot as plt
import math
#import ComplementaryFilter as Filter
import KalmanFilter as Filter
class Plots :
ROLL = 0
PITCH = 1
YAW = 2
MAGNO = 3
############################################################################
#
#
#
############################################################################
class Accelerometer :
########################################################################
#
#
#
########################################################################
def __init__(self):
self.timeStamp = []
self.x = []
self.y = []
self.z = []
self.angle = []
########################################################################
#
#
#
########################################################################
def getXYZ(self):
return list(zip(self.x, self.y, self.z))
########################################################################
#
#
#
########################################################################
def read(self,filename):
first = True;
with open(filename, 'r') as file:
for line in file:
if first:
first = False
continue
e = line.split(',')
self.timeStamp.append(int(e[1]))
self.x.append(float(e[2]))
self.y.append(float(e[3]))
self.z.append(float(e[4]))
########################################################################
#
# Roll for Android phone (roll around y-axis)
#
########################################################################
def roll(self):
self.angle = []
for x,z in zip(self.x, self.z):
self.angle.append(float(math.atan2(float(x) ,float(z)) * 57.3))
return self.angle
########################################################################
#
# Pitch for Android phone (pitch around x-axis)
#
########################################################################
def pitch(self):
self.angle = []
for x,y,z in zip(self.x, self.y,self.z):
self.angle.append(float(math.atan2(-float(y), math.sqrt(float(x)*float(x) + float(z)*float(z))) * 57.3))
return self.angle
def plot(self):
plt.plot(self.x)
plt.plot(self.y)
plt.plot(self.z)
############################################################################
#
#
#
############################################################################
class Gyro :
########################################################################
#
#
#
########################################################################
def __init__(self):
self.timeStamp = []
self.x = []
self.y = []
self.z = []
self.angle = []
########################################################################
#
#
#
########################################################################
def read(self,filename):
file = open(filename, "r")
first = True;
for line in file:
if first:
first = False
continue
e = line.split(',')
self.timeStamp.append(int(e[1]))
self.x.append(float(e[2]))
self.y.append(float(e[3]))
self.z.append(float(e[4]))
########################################################################
#
# Android y-axis
#
########################################################################
def roll(self):
self.angle = [y * 57.3 for y in self.y]
return self.angle
########################################################################
#
# Andoid x-axis
#
########################################################################
def pitch(self):
self.angle = [x * 57.3 for x in self.x]
return self.angle
########################################################################
#
#
#
########################################################################
def yaw(self):
self.angle = [z * 57.3 for z in self.z]
return self.angle
############################################################################
#
#
#
############################################################################
class Magnetometer :
########################################################################
#
#
#
########################################################################
def __init__(self):
self.x = []
self.y = []
self.z = []
self.angle = []
########################################################################
#
#
#
########################################################################
def getXYZ(self):
return list(zip(self.x, self.y, self.z))
########################################################################
#
#
#
########################################################################
def read(self,filename):
file = open(filename, "r")
first = True;
for line in file:
if first:
first = False
continue
e = line.split(',')
self.x.append(float(e[2]))
self.y.append(float(e[3]))
self.z.append(float(e[4]))
########################################################################
#
#
#
########################################################################
def getAngle(self):
self.angle = []
for x,y,z in zip(self.x, self.y,self.z):
a = math.atan2(y,x)
a = a * 57.3
a = a + 90.0
a = (a+360) % 360
self.angle.append(a)
return self.angle;
############################################################################
#
# I M U
#
############################################################################
class Imu :
########################################################################
#
#
#
########################################################################
def __init__(self):
self.accelerometer = Accelerometer()
self.gyro = Gyro()
self.magnometer = Magnetometer()
#self.filter = Filter.Complementary()
self.filter = Filter.Kalman()
########################################################################
#
#
#
########################################################################
def read(self, dataPath):
self.accelerometer.read(dataPath + "/Accelerometer.csv")
self.gyro.read(dataPath + "/Gyroscope.csv")
self.magnometer.read(dataPath + "/Compass.csv")
########################################################################
#
#
#
########################################################################
def roll(self):
return (self.accelerometer.roll(), self.gyro.roll())
########################################################################
#
#
#
########################################################################
def pitch(self):
return (self.accelerometer.pitch(), self.gyro.pitch())
########################################################################
#
#
#
########################################################################
def pitchFilter(self):
l = []
a,g,t = (self.accelerometer.pitch(), self.gyro.pitch(), self.gyro.timeStamp)
length = min(len(a),len(g), len(t))
a = a[:length]
g = g[:length]
t = t[:length]
for ae,ge,te in zip(a,g,t):
l.append(self.filter.filter(ae,ge,te))
return l
########################################################################
#
#
#
########################################################################
def yaw(self):
return self.gyro.yaw()
########################################################################
#
# Get the device attitude based on the accelerometer gravity vector and
# the compass reading from themagnetometer.
#
########################################################################
def getOrientation(self):
orientationList = []
aList = self.accelerometer.getXYZ()
mList = self.magnometer.getXYZ()
length = min(len(aList),len(mList))
aList = aList[:length]
mList = mList[:length]
for (ax, ay, az),(ex, ey ,ez) in zip(aList, mList):
normsqA = (ax * ax + ay * ay + az * az)
g = 9.81
freeFallGravitySquared = 0.01 * g * g
if normsqA < freeFallGravitySquared:
return None
hx = ey * az - ez * ay
hy = ez * ax - ex * az
hz = ex * ay - ey * ax
normH = math.sqrt(hx * hx + hy * hy + hz * hz)
if normH < 0.1:
return None
invH = 1.0 / normH
hx = hx *invH
hy = hy *invH
hz = hz *invH
invA = 1.0 / math.sqrt(ax * ax + ay * ay + az * az);
ax = ax *invA
ay = ay *invA
az = az *invA
mx = ay * hz - az * hy
my = az * hx - ax * hz;
mz = ax * hy - ay * hx;
R = [hx, hy, hz,
mx, my, mz,
ax, ay, az
]
orientationList.append(( (((math.atan2(R[1], R[4]) * 57.3) +360) %360), (math.asin(-R[7]) * 57.3), (math.atan2(-R[6], R[8]) * 57.3)))
return orientationList
########################################################################
#
#
#
########################################################################
def plot(self, plots):
if plots == Plots.PITCH :
plt.plot(self.accelerometer.pitch(), "-b", label="acc")
plt.plot(self.gyro.pitch(), "-r", label="gyro")
elif plots == Plots.ROLL:
plt.plot(self.accelerometer.roll())
plt.plot(self.gyro.roll())
elif plots == Plots.YAW:
plt.plot(self.gyro.yaw())
elif plots == Plots.MAGNO:
plt.plot(self.magnometer.getAngle())