utiasSTARS / pykitti

Python tools for working with KITTI data.
MIT License
1.14k stars 239 forks source link

Fixed error with Tracking calibration loading. #73

Closed michaelnutt2 closed 10 months ago

michaelnutt2 commented 11 months ago

Fixed error with the calibration file read that was generating a ValueError when trying to read from the tracking calibration file. The file is formatted differently from the from the Raw and Odometry calibration files, using spaces to separate the transform matrices from the values instead of a colon. Also updated the code in the tracking class to accommodate the differences in the calibration file. The _load_calibration file had a call to "self.sequence_path" that did not exist, updated the call with the correct formatting for the calibration file path.