-
-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
lidar label #8668
Comments
Hi, You are looking for "sensor.lidar.ray_cast_semantic"
|
hello, Thank you for the information. i have also another problem i am label cyclist but it does not shown in label file so what should i do for cyclist and two wheeler participant if "vehicle.motorcycle" in obj.type_id or "vehicle.bicycle" in obj.type_id or "vehicle.two_wheel" in obj.type_id: is this true? |
CARLA Version: 0.9.15 i am using this version but same problem cyclic is not able to label what is the problem ? |
With the "sensor.lidar.ray_cast_semantic" sensor, you always get an label back, even it it is tag 0. What do you get back? |
hello, def spawn_actors(world, blueprint_library, num_vehicles=50, num_pedestrians=20, num_cyclists=10, moving_ratio=0.5):
and this how i am label the data def save_3d_labels(world, frame_id, lidar, lidar_range, cameras):
according above spwam vehicle i am not able to pedestrial walking it is stable with one location as pedestrial is in random location place in road therfore i place in particular location and it does not move as well |
This code doesn't use LIDAR data. I can't tell the functionality of the function transform_to_sensor_coordinates(obj, lidar), but the only part you are using is the location of the sensor. Before we continue, write down what you want to do, because it doesn't look like your code fit to the question you are asking. |
hello, i am using infrastructure based 1 lidar and 2 cameras in and i have to label participants and make 3D label in label as well as calibration file like car, pedestrial and cyclic. In that i have those problem that cyclic is not able to label they recognised as car and label it in label file is car not cyclic |
Because, vehicle.* is everything with 2 and 4 wheels, and the first if statement doesn't work. https://carla.readthedocs.io/en/0.9.15/python_api/#carlaactor |
hello, Thank you it works i have another problem that i spawn the pedestrian but it going in the road like random location not in side road like regular traffic participant so what should i do? |
You should open a new ticket or ask in discord. |
lidar_position = carla.Transform(carla.Location(x=-46.17, y=-73.55, z=3.4), carla.Rotation(pitch=0, yaw=0))
i am placing my lidar in this location and want label data 3d object detection so it is possible and how i try but they not giving right data in the label file of the object.
lidar_bp = blueprint_library.find('sensor.lidar.ray_cast')
lidar_bp.set_attribute('range', '50') # Adjust range as needed for coverage
lidar_bp.set_attribute('rotation_frequency', '10')
lidar_bp.set_attribute('channels', '32')
The text was updated successfully, but these errors were encountered: