Replies: 2 comments 1 reply
-
The specific dataset classes, such as KITTI, and Waymo, inherit from the parent class: |
Beta Was this translation helpful? Give feedback.
1 reply
-
Thanks for your suggestions. Simplifying the dataset processing and data structures will be an item with high priority in the future. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I just thought, is it feasible to create a pipeline, where you won't need to mimic a specific dataset format (KITTI, Waymo , etc.) or write custom dataset class, but just specify paths to each type of data you have (pointclouds path, labels path, images path, calibration path, etc.) and require following just one rule: corresponding data for one sample has the same name - name of sample. For example, sample number 1 will fetch
1.bin
(or any other supported extension for pointclouds) from pointclouds path (if it was specified),1.png
(or any other supported extension for images) from images path (if it was specified) and so on.What drawbacks such approach has and how hard would it be to implement such feature?
Beta Was this translation helpful? Give feedback.
All reactions