How to change image file name format from dataset recorded #4476
-
Hello, I'm trying to follow the guidelines here https://github.com/microsoft/AutonomousDrivingCookbook/tree/master/AirSimE2EDeepLearning They have the dataset like this but after recording my own dataset, I got the image name like "img_PhysXCar__0_1649501185223983100.png" The question is, how can I change the image format name and the ImageName inside airsim_rec to be like the guidelines? I've tried to modify this code: but still can't figure out how. Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I haven't found the answer to this question. But I've found the answer to my problem. The cooking.py read "ImageName" and "Speed (kmph)" You can just change the code in cooking.py
to
I'm closing this ;) |
Beta Was this translation helpful? Give feedback.
I haven't found the answer to this question. But I've found the answer to my problem.
Turned out the problem is when I try to cook the dataset, there's a mismatch data label.
The cooking.py read "ImageName" and "Speed (kmph)"
while the label in airsim_rec.txt is "ImageFile" and "Speed"
You can just change the code in cooking.py