Lens contamination effects #8121
Unanswered
PhilippAuburger
asked this question in
Q&A
Replies: 2 comments 1 reply
-
I found a couple of things that effect the camera lens: the |
Beta Was this translation helpful? Give feedback.
0 replies
-
Aha! After digging into the documentation and some testing of my own, it looks like there are two import carla
client = carla.Client("localhost", 2000)
client.set_timeout(10.0)
world = client.get_world()
weather = world.get_weather()
weather.precipitation = 100 # Change to decrease water intensity on lens
weather.dust_storm = 100 # Change to decrease dust intensity on lens
print("Changing the weather...")
world.set_weather(weather) |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Dear all,
I want to simulate lens contamination effects (rain/dust/spray on the camera lens) using the CARLA simulator (0.9.14 or newer).
Can anyone give me an example how to do this (directly or via postprocessing)?
Beta Was this translation helpful? Give feedback.
All reactions