PatrickPromitzer

Results 97 comments of PatrickPromitzer
trafficstars

Hi, if it is important to have a constant fps, use the synchronization mode. https://carla.readthedocs.io/en/latest/foundations/#setting-synchronous-mode Example: https://github.com/carla-simulator/carla/blob/dev/PythonAPI/examples/sensor_synchronization.py Without the synchronization mode, the sensor data comes if Carla is done processing,...

I don't know where you get the fps value, but I guess you calculate it. The fps value is not in the output of the Camera Sensor ![image](https://github.com/user-attachments/assets/6d6e2955-7600-4c77-b2b7-1a40197dad80) https://carla.readthedocs.io/en/0.9.15/ref_sensors/#rgb-camera The...

Hi, are you local on the computer or do you use ssh? You can try ``` ./CarlaUE4.sh -RenderOffScreen ``` which will deactivate the spectator and GUI. If the "-RenderOffScreen" works,...

Hi, are you using the same account you are logged in with? If you use switch account on your machine in the terminal ("su username"), it can't show a window,...

Hi, could be, or could be something difference. It is hard to tell with the different parts which could create an problem. I know that Carla works, but it could...

Hi. The script you tried is using pygame, which creates the pictures with a camera sensor. At this point we know, the simulation itself works, but the preview window doesn't....

> I had the same problem and wondered if you had solved it? (base) rossuihan@rossuihan:~/CARLA_0.9.10.1$ ./CarlaUE4.sh --world-port=2000 -opengl 4.24.3-0+++UE4+Release-4.24 518 0 Disabling core dumps. LowLevelFatalError [File:Unknown] [Line: 3762] Failed to...

Hi the examples folder includes an example for the Logitech G29 steering wheel. https://github.com/carla-simulator/carla/blob/0.9.15.2/PythonAPI/examples/manual_control_steeringwheel.py To be able to use this example, you need an "wheel_config.ini file with the following content...

Hi, delta-seconds is describing the time between each simulation step. For example: **delta-seconds=0.1 (10 Hz) camera picture per second = 1/delta-seconds (10Hz)** You will get a picture for each simulation...

Hi, open the file ``` path/to/Carla/Util/BuildTools/Import.py ``` and change the ```is not```to ```!=``` in line 353 After that, it should work. ```python if key is not 'tiles': ``` to ```python...