You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ARKit frame capture time (Mach absolute time, seconds since device boot)
imu_timestamp
float
IMU sample time, same clock as timestamp — subtract to get offset
Camera Extrinsics
Field
Type
Description
camera_transform
float[16]
4×4 column-major camera-to-world matrix. Translation is at indices [12], [13], [14]
camera_euler_angles
float[3]
Pitch, yaw, roll in radians
Unpacking the transform in Python:
importnumpyasnpT=np.array(frame["camera_transform"]).reshape(4, 4, order='F') # column-majorposition=T[:3, 3] # camera world positionrotation=T[:3, :3] # camera world orientation
Depth maps are stored as raw Float32 binary files at depth/NNNNNN.bin.
Confidence maps are stored as raw UInt8 binary files at confidence/NNNNNN.bin (values: 0=low, 1=medium, 2=high).