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

Training loss
Test accuracy

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

Training loss
Test accuracy

Best Test Accuracy

Within 100 epoch training, the best accuracy was reported as 89.58 %

Distribution of accuracy

Visualization (Successful cases):

Here I visualize the top 5 accurate samples. The accuracy was obtained as the percentage of correct points.

Top 1. Accuracy: 99.58 %

Top 2. Accuracy: 99.52 %

Top 3. Accuracy: 99.26 %

Top 4. Accuracy: 99.12 %

Top 5. Accuracy: 98.98 %

Visualization (Failure cases):

Here I visualize the top 5 worst accurate samples.

Worst 1. Accuracy: 40.62 %

Worst 2. Accuracy: 49.37 %

Worst 3. Accuracy: 51.35 %

Worst 4. Accuracy: 53.71 %

Worst 5. Accuracy: 54.16 %

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)05101520
Accuracy (%)96.8596.4394.8693.4987.62
Angle (degree)2530354045
Accuracy (%)75.5556.3541.6633.8928.96

b. Segmentation

Angle (degree)05101520
Accuracy (%)89.5889.0587.4384.7680.88
Angle (degree)2530354045
Accuracy (%)75.9271.4767.8564.0260.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 Points100009000800070006000
Accuracy (%)96.8596.8596.8596.8596.75
Number of Points50004000300020001000
Accuracy (%)96.6496.6496.8596.6496.22

b. Segmentation

Number of Points100009000800070006000
Accuracy (%)89.5889.5889.5989.6189.61
Number of Points50004000300020001000
Accuracy (%)89.6089.6489.6589.6489.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.

Classification model
Segmentation model

According to the figures above, the classifier shows robust performance over 500 points, while the segmentation model works reasonably well over 1,000 points.