In the KITTI exporter at line 342, the h and w attributes are swapped so that they correspond the the second and first elements, respectively, of the Cuboid3D scale attribute:
This corresponds to the re-ordering [sy, sx, sz] with respect to the definitions from the Cuboid3D class definition.
However, this appears to be inconsistent with the definition from Geiger, 2013, p. 3, which says that length corresponds to the "x" axis of the tracklet.
Is this inconsistency expected? I needed to re-swap these dimensions when using the labels.
In the KITTI exporter at line 342, the
h
andw
attributes are swapped so that they correspond the the second and first elements, respectively, of the Cuboid3D scale attribute:This corresponds to the re-ordering
[sy, sx, sz]
with respect to the definitions from the Cuboid3D class definition.However, this appears to be inconsistent with the definition from Geiger, 2013, p. 3, which says that length corresponds to the "x" axis of the tracklet.
Is this inconsistency expected? I needed to re-swap these dimensions when using the labels.