tsinghua-rll / VoxelNet-tensorflow

A 3D object detection system for autonomous driving.
MIT License
453 stars 123 forks source link

Use correct calibration matrices for each frame #64

Open andrearama opened 5 years ago

andrearama commented 5 years ago

As also pointed out in #43 , for both training and testing the calibration matrices used are always the averaged one instead of the correct ones for each single frame. In different frames this creates a visible offset that might hinder the training process.

The modifications here implemented address this problem: first fetching the correct calibration matrices P, T and R, then passing them down to the functions used (mainly in utils.py)