TypeError: Can't instantiate abstract class PointCloud with abstract methods from_file, nbr_dims

Hi, I’m using nuscenes devkit in conjunction with the following open source code: https://github.com/TUMFTM/CameraRadarFusionNet/blob/5506700c21ecda8de7cbbfa0cff25413fbcb2a96/crfnet/data_processing/fusion/fusion_projection_lines.py#L319

When trying to instantiate PointCloud via the following:
pc = PointCloud(radar_points)

I get the following error…
TypeError: Can’t instantiate abstract class PointCloud with abstract methods from_file, nbr_dims

Any suggestions?

Hi @Mister_Machine, I would recommend using RadarPointCloud instead:

Thanks, this did the trick!