-
-
Notifications
You must be signed in to change notification settings - Fork 3.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Get images from the game #33
Comments
Yes, you are right, there is a bug in the current Python implementation. We will fix it asap. Sorry about this |
Is there anything i can help to solve this problem? |
Hey, thanks for offering! At the moment we are discussing how to fix this, so not much you can help, but it's appreciated :) we'll come with a solution soon |
I edited the carla_manual_control.py to allow for image and data recording. I am currently after imitation learning. My goal is for be able to interface with Keras model to allow for the model to drive the car. |
@nsubiron I am unable to save the images too... what is the work-around to get the images ... Thank you |
Hi @naveen7v, You can check the client_example.py to see how is done. You can save the images there by running with the
Internally, the images received from the simulator have a member function to save the image as png measurements, sensor_data = client.read_data()
for name, measurement in sensor_data.items():
measurement.save_to_disk('filename.png') |
Dear sir...the I just have rgb camera sensor enabled...is it a problem in my side? Edit: When i ran the carla server using the build from source method ...the sensor data are saved to disk Thank you |
here |
I am able to get the server and client to run. I loook though the python example.py. I am trying to have the image and user action save so I can try out behavior cloning. However I can’t seem to get image save although I set save image to true in the python example file. I
The text was updated successfully, but these errors were encountered: