Skip to content

This repo includes work on lidar point cloud semantic segmentation using self-collected Carla simulator dataset and Semantic KITTI real-world dataset.

Notifications You must be signed in to change notification settings

Prathamesh1411/training-in-simulator-inference-in-real-world

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Training-in-Simulator-Inference-in-Real-World

Motivation:

Deep learning in the research field of autonomous driving systems (ADS) always suffers from data acquiring and annotation. For novel sensing modalities such as Light Detection and Ranging (LiDAR), it takes even more effort to annotate since it is difficult for human beings to label on the point clouds. Tackling this issue, we explore the use of synthetic data to train a neural network for real world inference.

Dataset used:

  1. Semantic KITTI
  2. Self generated dataset using Carla Simulator

Requirements:

  1. Carla 0.9.12: Steps for installation and system requirements - Method which I used: Package installation from github
  2. Conda 4.10.3
  3. Numpy 1.21.2
  4. Tensorflow 2.4.1/Pytorch 1.11.0
  5. Carla has maintained detailed documentation about its core concepts and Python API reference

Method to collect data with carla:

  1. Open a terminal in the main installed carla package folder. Run the following command to execute package file and start the simulation:
./CarlaUE4.sh  
  1. Copy and paste the file src/utils/datacollector.py(in this repo) inside your installed carla package at location PythonAPI/examples folder.
  2. Open another terminal inside PythonAPI/example and run following command to start collecting data:
python3 datacollector.py --sync -m Town01 -l  
  1. Optional- Run in parallel in new terminal
python3 generate_traffic.py -n 50 -w 50      # spawn 50 vehicles and pedestrians 
python3 dynamic_weather.py                   # collect the dataset using varying weather conditions. 

Folder structure:

/PythonAPI/examples/dataset/
          └── sequences/
                  ├── Town01/
                  │   ├── poses.txt
                  │   ├── camera_depth/
                  │   │     ├── images/
                  │   │     │     ├ WorldSnapshot(frame=26)_1.png
                  │   │     │     ├ WorldSnapshot(frame=27)_1.png
                  │   │     ├── raw_data/
                  │   │     │     ├── binary 
                  │   │     │     │    ├ WorldSnapshot(frame=26).npy
                  │   │     │     │    ├ WorldSnapshot(frame=27).npy
                  │   ├── camera_rgb/
                  │   │     ├── images/
                  │   │     │     ├ WorldSnapshot(frame=26)_0.png
                  │   │     │     ├ WorldSnapshot(frame=27)_0.png
                  │   │     ├── raw_data/
                  │   │     │     ├── binary 
                  │   │     │     │    ├ WorldSnapshot(frame=26).npy
                  │   │     │     │    ├ WorldSnapshot(frame=27).npy
                  │   ├── camera_semseg/
                  │   │     ├── images/
                  │   │     │     ├ WorldSnapshot(frame=26)_2.png
                  │   │     │     ├ WorldSnapshot(frame=27)_2.png
                  │   │     ├── raw_data/
                  │   │     │     ├── binary 
                  │   │     │     │    ├ WorldSnapshot(frame=26).npy
                  │   │     │     │    ├ WorldSnapshot(frame=27).npy
                  │   ├── lidar_semseg/
                  │   │     ├── images/
                  │   │     │     ├ 00000026.png
                  │   │     │     ├ 00000027.png
                  │   │     ├── raw_data/
                  │   │     │     ├── binary_files 
                  │   │     │     │    ├ WorldSnapshot(frame=26)_3.bin
                  │   │     │     │    ├ WorldSnapshot(frame=27)_3.bin
                  │   │     │     ├── ground_truth
                  │   │     │     │    ├ WorldSnapshot(frame=26)_3.label
                  │   │     │     │    ├ WorldSnapshot(frame=27)_3.label
                  │   │     │     ├── ply_files 
                  │   │     │     │    ├ WorldSnapshot(frame=26)_3.ply
                  │   │     │     │    ├ WorldSnapshot(frame=27)_3.ply
                  │   │     │     ├── updated_ground_truth                      # Label remapping to be in accordance with Semantic KITTI labels
                  │   │     │     │    ├ WorldSnapshot(frame=26)_3_new.label
                  │   │     │     │    ├ WorldSnapshot(frame=27)_3_new.label
                  ├── Town02/
                  .
                  .
                  .
                  └── Town05/

lidar_semseg/images contains Spherically Projected images(Range-view). lidar_semseg/raw_data/updated_ground_truth contains label remapping for only 3 classes:

  • 0 - background
  • 1 - car
  • 2 - pedestrians

Semantic-KITTI modifier:

  1. Download dataset - Semantic KITTI
  2. Run KITTI_data_modifer.py to create projected bin files, label files and images of given sequence data_odometry_velodyne_proj, data_odometry_labels_projimg, data_odometry_labels_proj.
  3. Semantic KITTI labels are remapped corresponding to Carla labels.

Training the Model:

  1. Make sure you are inside /src folder and then run the following command to set PYTHONPATH for utils folder.
export PYTHONPATH=$PYTHONPATH:$(pwd)/utils
  1. After this, To train the model Run the following command:
python3 nets/modified_SqueezeSeg_Tensorflow.py 3 0 6 50

Here, You can change the parameters as per your needs.

  • The First integer (3) denotes the number of classes for which the model has to learn to segment (this has to be same compared to the number of classes in your ground truth labels).
  • If you want to test the model, you need to set the second argument to 1.
  • The third argument sets the batch size.
  • The Fourth argument sets the Number of Epochs.
  1. For Testing, Run the following command:
python3 nets/modified_SqueezeSeg_Tensorflow.py 3 1 6 50

Our Results:

Ground-truth_01:

Results01

Predicted_01:

Results01

Ground-truth_02:

Results02

Predicted_02:

Results02

Ground-truth:

Results

Predicted:

Results

Loss Curve:

LossvsEpoch

Trained on Kitti dataset

LossvsEpoch

Trained on Carla+Kitti combined dataset

About

This repo includes work on lidar point cloud semantic segmentation using self-collected Carla simulator dataset and Semantic KITTI real-world dataset.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages