Michael Heine
Michael Heine
Hello, I'm using a car model in a single DAE format to add static parked cars without physics. Right now, I'm creating a StaticObject like this: ``` self.scenario = Scenario('urban',...
Do you have an AI running? If so, the AI must pass all waypoints until you can control it. You can also add another vehicle without waypoints and control that...
I just tried your code and I could control the car manually and look around as well. I tested it in BeamNGpy 1.15 and BeamNG version 1.9 revision 45. Do...
I'm using an older version than yours. Version 1.9 gets printed on the Python console but I assume it's research version 1.5 (if I'm not mistaken, pretty confusing). You are...
Sorry for the late reply. Here is the code that I used: ```python # Setup camera. direction = (0, 1, 0) fov = 90 resolution = (1280, 720) x, y,...
I'm using the depth cameras as well and they provide me accurate values. Could you share how you calculate the depth of the cones? Maybe there is a bug in...
Had the same issue. Resolved it by running the following in my terminal: `sudo apt install ros-foxy-derived-object-msgs` `sudo apt install ros-foxy-ackermann-msgs`
I have the same problem as @Kangsan-Jeon .
Ok I could fix this issue. You need to access the model attribute of the YOLO class, e.g. `model = YOLO(config)` and then you can call `yolo.model.load_weights("checkpoints\\traffic-light-detection.h5")` That is how...
Did you source ROS before executing the above command? Like ```source /opt/ros/humble/setup.bash``` After that, you should be able to run ```colcon build```