How to train 3D point cloud data? Where should I beginn?

458 Views Asked by At

I'm an automotive engineer student, and at the moment I'm working in a project for an autonomous bus at the university with 3D point clouds from a lidar sensor. My job here is to train the point cloud with deep learning algorithms. But I do not know exactly how to start. I found many sources on the internet. But it is also too diverse for me as a beginner, I do not know how to start first. Can someone give me some tips? Or good source for beginners.

Thank you in advance!

2

There are 2 best solutions below

0
On

There are two possible approaches:

If the feature engineering approach is selected, you can train your model with several different classifiers, such as Multilayer Perceptron (MLP), Support Vector Machines (SVM), and Random Forest (RF), for instance.

0
On

According to your question, I assume that you are working on your own LiDAR point cloud data rather than the public datasets. Initially, I would suggest annotating the data with 3D bounding boxes on point cloud data.

As concerned about deep learning algorithms I would prefer understanding Complex YOLO, VoxelNet, and PointNet. To understand the implementation PointNet algorithm you can refer to the Keras webpage trained on the ModelNet10 dataset.