Skip to content

This repository contains the implementation of Kernel Point Convolution (KPConv) to decompose the pole-like objects to their constituent part (part segmentation of the pole-like objects).

License

Amsterdam-Internships/Pole-Part-Segmentation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

96 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Part Segmentation of Pole-like Objects

This repository contains the implementation of Kernel Point Convolution (KPConv) to decompose the pole-like objects to their constituent part (the carrier and different attachments) or as we call it, the part segmentation of the pole-like objects. The repository is created by Sara Yousefimashhoor as the extension of Hugues THOMAS Deep learning Algorithm (KPConv).
The main changes to the original code are as follows:
• Debugging the KPConv codes for the part-segmentation task.
• Adding codes to prepare the custom dataset of the Gemeente Amsterdam for the part segmentation task.
• Modifying the code and the hyper-parameters to fit the project's purpose.
• Modifying the code to include addtitional features of intensity and color values.

Intro figure

Project Folder Structure

The repository contains the code, dataset, trained model, and some useful resources and examples of the pipeline, which are structured in the following format:

  1. KPConv: Folder containing the code and scripts to run the pipeline
  2. doc: Folder containing the full report of the project, the label meaning and statistics about data partitions.
  3. media: Folder containing media files (icons, video)
  4. trained_models: Folder containing our trained models for pole part-segmentation task. One trained only with coordinate values (Log_2022-03-14_09-05-26), and another trained using coordinate, intensity, and color values (Log_2022-03-19_22-04-18).

Installation and deployment

A step-by-step guide to setup the environment for Ubuntu 20.04 is provided in INSTALL.md.
After setting up the envionment, follow the steps below:

  1. Clone this repository:
    git clone https://github.com/Amsterdam-Internships/Pole-Part-Segmentation.git

Training

If you are running the pipeline for a custom dataset:

  1. Before running the training algorithm, split your data using ./KPConv/0_stratified_split_for_laz.py. This code is reading laz format. Note that for handling .ply files requires some modifications. In this step, modify the test_size variable to determine what percentage of the dataset is dedicated to validation and test (combined). Also, modify the val_size variable to determine what percentage of the splitted test set is dedicated to validation. The output of the code is three folders of train_ply, test_ply, and val_ply inside the original data folders.
  2. Prepare the partitioned data using ./KPConv/1_prepare_data_xyzrgbi.py . This code prepares .laz files, saves them as .ply with normalized coordinates, color and intensity values (16bit) and gives them proper names. If your dataset does not contain intensity or color values you need to modify the code to skip related code lines. The code rewrites prepared point clouds in train_ply, test_ply, and val_ply folders in .ply format. The taregt directory should be modified and set to the parent folder containing all the splits.
  3. Create a Data folder inside the KPConv folder and add the three folders of train_ply, val_ply, and test_ply containing the prepared point clouds to it.
  4. Modify the self.path variable in the ./KPConv/datasets/ShapeNetPart.py to read the point clouds from the Data folder.
  5. Determine whether the intensity and color values are going to be fed into the model in the ./KPConv/training_ShapeNetPart.py and ./KPConv/utils/config.py by modifying the boolean variables intensity_info and color_info.
  6. Run the ./KPConv/training_ShapeNetPart.py
  7. Find your trained model and training outputs in ./KPConv/results

If you are runnning on our provided dataset:

  1. Our sample data is shared here. Download the zip file, extract the three folders (train_ply, test_ply, and val_ply) the and copy them to the ./KPConv/Data path.
  2. Modify the self.path variable in the ./KPConv/datasets/ShapeNetPart.py folder to read the point clouds from the Data folder.
  3. Determine whether the intensity and color values are going to be fed into the model in the ./KPConv/training_ShapeNetPart.py and ./KPConv/utils/config.py by modifying the variables intensity_info and color_info.
  4. If you want to use wandb dashboard to trace your experiment, install wandb package using pip installer. Also,uncomment lines related to wandb in the imports and global variables section in ./KPConv/training_ShapeNetPart.py and fill your account information to use the dashboard. Then, uncomment wandb commands in the ./KPConv/utils/trainer.py.
  5. Run the ./KPConv/training_ShapeNetPart.py
  6. Find your trained model and training outputs in ./KPConv/results folder.

Testing

  1. Find the trained model (log folder_) in ./KPConv/results that you want to test and copy the path to it.
  2. Assign the file path of the trained model to the chosen_log variable in ./KPConv/test_any_model.py
  3. Make sure that the conda environment (tf-gpu) is activated.
  4. Run test_any_model.py.
  5. The mIoU will appear on the screen in form of a table.
  6. Find the predicted point clouds in ./KPConv/test folder.

Inference

  1. To prepare the inference point clouds, use Prepare_data_xyzrgbi.py. Since, the ground truth is not available for inference dataset, we set the labels for all the points to 1. comment the line 56 and uncomment the line 59 in ./KPConv/Prepare_data_xyzrgbi.py to do so.
  2. Copy your prepared point clouds in ./KPConv/Data/test_ply folder.
  3. Go to ./KPConv/utils/tester.py and set the inference variable to True.
  4. Assign the file path of the trained model to the chosen_log variable in ./KPConv/test_any_model.py. If you want to run the inference on our pretrained models, copy Log* folders in the ./model to ./KPConv/results based on your inout features. For predicting only based on coordinare values use Log_2022-03-14_09-05-26 and for predicting based on coordinate, intensity and color values use Log_2022-03-19_22-04-18.
  5. Make sure that the conda environment (tf-gpu) is activated.
  6. Run test_any_model.py.
  7. The mIoU appeared on the screen has no meaning because the ground truth is unknown.
  8. Find the predicted point clouds in ./KPConv/test folder.

How it works

Kernel-point convolution, or KPConv(Thomas et al., 2019), is a deep learning algorithm operating directly on 3D point clouds. The main code is cloned from KPConv GitHub repository. Some useful links to understand the algorithm are listed below:

You can also find related materials in my internship report and my thesis.

Parameter Setting

There are four groups of input parameters for KPConv:

  • Input Parameters: These parameters are the specifications of a task and the project at hand. They will determine what task (semantic segmentation, part segmentation, or classification) is going to be done? What object is our object of interest (an airplane, a lamp or a pole is going to be decomposed)? How many parts/classes does the object have? How many features per point is going to be fed into the network (is it only x, y, z coordinates or it also contains RGB values or intensity?)What is the extent of the input clouds (rescaling the point clouds)? How many CPUs are going to be used for this task?
  • Model Parameters: These parameters are mostly about the model architecture, the number of layers, the first feature’s dimension, etc.
  • KPConv Parameters: These are the main hyperparameters mainly describing the spherical kernel and the kernel points. The number of kernel points, the density parameter, the extent of the kernel points influence zone, the influence mode (linear, constant, gaussian) of the kernel points, the convolution mode (whether to use the sum or use the closest value to the point center?) is determined here.
  • Training Parameters: These parameters are mainly about the learning rate, the weights of each type of loss in the calculation of the total loss, the data augmentation details, the number of epochs and steps. Also the number of batches and snapshot gaps.

You can find more details about the parameters, their role, and their possible values in ./KPConv/utils/config.py

In this project, the main parameter fine-tuning is focused on the KPConv parameters to reach the optimized kernel shape and kernel points weights and arrangement.Input and model parameters remained intact. The hyper-parameter fine-tuning for pole part segmentation is done with the help of wandb dashboard. However, the fine-tuning results shows that the default values are almost optimized already. Only the change in three parameters shown in the table below could improve the mIoU by 2%. Furthermore, the qualitative result shows that new combination of parameters benefits some classes while worsen the predictions for others (See ./doc/report.pdf). Therefore, the class of interest can influence the choice of hyper-parameters.

Parameters density_parameter num_kernel_points batch_number mIoU
Default Value 5 15 15 87.5%
Optimized Value 3 20 10 89.5%

Performances

The results of different experiments are shown in the table below. The mIoU values shows that overall using intensity and color values is useful when distinguishing between pole attachments. Particularly, the improvement reflects in distinguishing different types of signs better as they have high reflectivity and distinct colors. You can also look at two examples in the media folder to gain insight about the qualitative results. You can also read the full report in the doc folder and find the per class results.

Method KPConv (default) KPConv (debugged) KPConv (x,y,z,i) KPConv (x,y,z,r,g,b) KPConv (x,y,z,r,g,b,i)
mIoU 36% 84.4% 84.9% 84.8% 87.5%

Acknowledgements

Our code is based on KPConv algorithm KPConv. You can read more about the algorithm here
Our data provider is Cyclomedia.
To track the experiments wandb dashboard is used.

About

This repository contains the implementation of Kernel Point Convolution (KPConv) to decompose the pole-like objects to their constituent part (part segmentation of the pole-like objects).

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published