alexklwong / void-dataset

Visual Odometry with Inertial and Depth (VOID) dataset
Other
119 stars 9 forks source link

Can you provide more details about how data are stored? #1

Closed MathLens closed 4 years ago

MathLens commented 4 years ago

Thank you

alexklwong commented 4 years ago

Sparse depth and ground truth are both stored in meters

Validity map refers to the pixel locations where sparse depth is available

Absolute poses are stored at text files and are current timestamped (timestamp.txt inside pose directories) camera to world. You can load them as numpy arrays using np.loadtxt(...)

Intrinsics are provided as K.txt at each sequence directory and may vary a bit since we calibrate each time.

MathLens commented 4 years ago

Thanks for your reply. But I think depths are not in meters, since most numbers are around 1000. Do you actually mean millimeters?

Also, can I simply get the available sparse depths by (Sparse depth > 0) instead of validity map?

alexklwong commented 4 years ago

Sorry I meant to type millimeters. Yes, you can get validity map that way as well.

MathLens commented 4 years ago

Thanks for your clarification!