Assignment 5. Point Cloud Classification and Segmentation
Course: 16-889 Learning for 3D Vision
Name: Soyong Shin
Due by: Apr. 14 (Fri)
I used 3 late days for this assignment
Contents:
Q1. Classification Model (40 points)
Following predefined dimensions of hidden layers (Slide L17, page 30), I implemented on models.py
with the class of cls_model
Training Log
Best Test Accuracy
Within 100 epoch training, the best accuracy was reported as 96.85 %
Visualization (Successful cases):
Visualization (Failure cases):
Q2. Segmentation Model (40 points)
Following predefined dimensions of hidden layers (Slide L17, page 32), I implemented on models.py
with the class of seg_model
Training Log
Best Test Accuracy
Within 100 epoch training, the best accuracy was reported as 89.58 %

Visualization (Successful cases):
Here I visualize the top 5 accurate samples. The accuracy was obtained as the percentage of correct points.
Visualization (Failure cases):
Here I visualize the top 5 worst accurate samples.
Q3. Robustness Analysis (20 points)
A. Rotation transformation
Here, I applied random rotation to the points and check the robustness of the network on the rotational transformation. The implementation is on analysis.py
I tested the models on 10 different rotational magnitudes, 0 - 45
with an interval of 5
degrees. In every iteration, a random rotation vector angle
with each magnitude is sampled and transformed to the rotational matrix rMat
. And the points are rotated by the matrix.
a. Classification
Angle (degree) | 0 | 5 | 10 | 15 | 20 |
Accuracy (%) | 96.85 | 96.43 | 94.86 | 93.49 | 87.62 |
Angle (degree) | 25 | 30 | 35 | 40 | 45 |
Accuracy (%) | 75.55 | 56.35 | 41.66 | 33.89 | 28.96 |
b. Segmentation
Angle (degree) | 0 | 5 | 10 | 15 | 20 |
Accuracy (%) | 89.58 | 89.05 | 87.43 | 84.76 | 80.88 |
Angle (degree) | 25 | 30 | 35 | 40 | 45 |
Accuracy (%) | 75.92 | 71.47 | 67.85 | 64.02 | 60.86 |
Conclusion
Both networks clearly show performance decreases as the magnitude of rotation increases. The segmentation model, on the other hand, shows better robustness to the arbitrary point cloud rotation.
B. Number of points
Here I changed the size of the point cloud and check the robustness of the models on the size. The implementation is on analysis.py
Here I used 1000 to 10000 points with an interval of 1,000.
a. Classification
Number of Points | 10000 | 9000 | 8000 | 7000 | 6000 |
Accuracy (%) | 96.85 | 96.85 | 96.85 | 96.85 | 96.75 |
Number of Points | 5000 | 4000 | 3000 | 2000 | 1000 |
Accuracy (%) | 96.64 | 96.64 | 96.85 | 96.64 | 96.22 |
b. Segmentation
Number of Points | 10000 | 9000 | 8000 | 7000 | 6000 |
Accuracy (%) | 89.58 | 89.58 | 89.59 | 89.61 | 89.61 |
Number of Points | 5000 | 4000 | 3000 | 2000 | 1000 |
Accuracy (%) | 89.60 | 89.64 | 89.65 | 89.64 | 89.27 |
Conclusion
Both networks show great robustness to the number of input points. It means 1,000 points are still a sufficient number for both tasks. Therefore, I further conducted the experiments on much smaller points.
According to the figures above, the classifier shows robust performance over 500 points, while the segmentation model works reasonably well over 1,000 points.