-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathread_bin_file.py
31 lines (28 loc) · 960 Bytes
/
read_bin_file.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
mport struct
import numpy as np
import eulerangles
def read_double_calibration_mat(cal_file_name):
""""
read calibration matrix bin file and return calibration matrix(world in camera)
"""
HandEyeCal = []
binfile = open(cal_file_name, 'rb')
for i in range(4):
row = []
for j in range(4):
data = binfile.read(8)
elem = struct.unpack("d", data)
row.append(elem)
HandEyeCal.append(row)
binfile.close()
return np.asarray(HandEyeCal).reshape((4, 4))
def blender_camera_coordination_definition(world_in_camera):
camera_in_world = np.linalg.inv(world_in_camera)
print("camera in world:")
print(camera_in_world)
rot = camera_in_world[:3, :3]
# blender different zuobiaoxi
rot[:3, 0] = -rot[:3, 0]
rot[:3, 2] = -rot[:3, 2]
print("quaternion: {}".format(eulerangles.mat2quat(rot)))
print("postion: {}".format(camera_in_world[:3, 3]))