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
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.
The text was updated successfully, but these errors were encountered:
<!-- Contributing guide:
https://github.com/openvinotoolkit/datumaro/blob/develop/CONTRIBUTING.md
-->
### Summary
- Fix for #1578
### How to test
<!-- Describe the testing procedure for reviewers, if changes are
not fully covered by unit tests or manual testing can be complicated.
-->
### Checklist
<!-- Put an 'x' in all the boxes that apply -->
- [ ] I have added unit tests to cover my changes.
- [ ] I have added integration tests to cover my changes.
- [x] I have added the description of my changes into
[CHANGELOG](https://github.com/openvinotoolkit/datumaro/blob/develop/CHANGELOG.md).
- [ ] I have updated the
[documentation](https://github.com/openvinotoolkit/datumaro/tree/develop/docs)
accordingly
### License
- [ ] I submit _my code changes_ under the same [MIT
License](https://github.com/openvinotoolkit/datumaro/blob/develop/LICENSE)
that covers the project.
Feel free to contact the maintainers if that's a concern.
- [ ] I have updated the license header for each file (see an example
below).
```python
# Copyright (C) 2024 Intel Corporation
#
# SPDX-License-Identifier: MIT
```
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.
The text was updated successfully, but these errors were encountered: