MCPcopy Create free account
hub / github.com/UZ-SLAMLab/ORB_SLAM3 / plotGyro

Method plotGyro

Examples/Calibration/python_scripts/process_imu.py:111–118  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

109 self.imuSync = np.delete(self.imuSync, range(idxSync, totGyro), axis=0)
110
111 def plotGyro(self):
112 for i in range(1, 4):
113 plt.plot(self.imuSync[:, 0], self.imuSync[:, i], label=str("acc ") + str(i))
114 plt.xlabel("time (s)")
115 plt.ylabel("ang. vel. (rad/s)")
116 plt.title("Gyroscope")
117 plt.legend()
118 plt.show()
119
120 def plotAcc(self):
121 for i in range(4, 7):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected