QingyongHu / SensatUrban

πŸ”₯Urban-scale point cloud dataset (CVPR 2021 & IJCV 2022)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

arXiv GitHub Stars visitors

Towards Semantic Segmentation of Urban-Scale 3D Point Clouds: A Dataset, Benchmarks and Challenges

This is the official repository of the SensatUrban dataset. For technical details, please refer to:

Towards Semantic Segmentation of Urban-Scale 3D Point Clouds: A Dataset, Benchmarks and Challenges
Qingyong Hu, Bo Yang*, Sheikh Khalid, Wen Xiao, Niki Trigoni, Andrew Markham.
[Paper] [Blog] [Video] [Project page] [Download] [Evaluation] [Urban3D workshop@ECCV2022]

We are hosting the 2nd Urban3D Challenge at ECCV 2022, please refer to this page for more details.

(1) Dataset

1.1 Overview

This dataset is an urban-scale photogrammetric point cloud dataset with nearly three billion richly annotated points, which is five times the number of labeled points than the existing largest point cloud dataset. Our dataset consists of large areas from two UK cities, covering about 6 km^2 of the city landscape. In the dataset, each 3D point is labeled as one of 13 semantic classes, such as ground, vegetation, car, etc..

1.2 Data Collection

The 3D point clouds are generated from high-quality aerial images captured by a professional-grade UAV mapping system. In order to fully and evenly cover the survey area, all flight paths are pre-planned in a grid fashion and automated by the flight control system (e-Motion).

1.3 Semantic Annotations

  • Ground: including impervious surfaces, grass, terrain
  • Vegetation: including trees, shrubs, hedges, bushes
  • Building: including commercial / residential buildings
  • Wall: including fence, highway barriers, walls
  • Bridge: road bridges
  • Parking: parking lots
  • Rail: railroad tracks
  • Traffic Road: including main streets, highways
  • Street Furniture: including benches, poles, lights
  • Car: including cars, trucks, HGVs
  • Footpath: including walkway, alley
  • Bike: bikes / bicyclists
  • Water: rivers / water canals

1.4 Statistics

(2) Benchmarks

We extensively evaluate the performance of state-of-the-art algorithms on our dataset and provide a comprehensive analysis of the results. In particular, we identify several key challenges towards urban-scale point cloud understanding.

(3) Demo

(4) Training and Evaluation

Here we provide the training and evaluation script of RandLA-Net for your reference.

  • Download the dataset

Download the files named "data_release.zip" here. Uncompress the folder and move it to /Dataset/SensatUrban.

  • Setup the environment
conda create -n randlanet python=3.5
source activate randlanet
pip install -r helper_requirements.txt
sh compile_op.sh
  • Preparing the dataset
python input_preparation.py --dataset_path $YOURPATH
cd $YOURPATH; 
cd ../; mkdir original_block_ply; mv data_release/train/* original_block_ply; mv data_release/test/* original_block_ply;
mv data_release/grid* ./

The data should organized in the following format:

/Dataset/SensatUrban/
          └── original_block_ply/
                  β”œβ”€β”€ birmingham_block_0.ply
                  β”œβ”€β”€ birmingham_block_1.ply 
		  ...
	    	  └── cambridge_block_34.ply 
          └── grid_0.200/
	     	  β”œβ”€β”€ birmingham_block_0_KDTree.pkl
                  β”œβ”€β”€ birmingham_block_0.ply
		  β”œβ”€β”€ birmingham_block_0_proj.pkl 
		  ...
	    	  └── cambridge_block_34.ply 
  • Start training: (Please first modified the root_path)
python main_SensatUrban.py --mode train --gpu 0 
  • Evaluation:
python main_SensatUrban.py --mode test --gpu 0 
  • Submit the results to the server: The compressed results can be found in /test/Log_*/test_preds/submission.zip. Then, feel free to submit this results to the evaluation server.

  • The Urban3D Challenge@ICCV2021 Forum: Please scan the code to join our wechat group or drop a message here:

Citation

If you find our work useful in your research, please consider citing:

@inproceedings{hu2020towards,
  title={Towards Semantic Segmentation of Urban-Scale 3D Point Clouds: A Dataset, Benchmarks and Challenges},
  author={Hu, Qingyong and Yang, Bo and Khalid, Sheikh and Xiao, Wen and Trigoni, Niki and Markham, Andrew},
booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition},
  year={2021}
}


@article{hu2022sensaturban,
title={Sensaturban: Learning semantics from urban-scale photogrammetric point clouds},
author={Hu, Qingyong and Yang, Bo and Khalid, Sheikh and Xiao, Wen and Trigoni, Niki and Markham, Andrew},
journal={International Journal of Computer Vision},
volume={130},
number={2},
pages={316--343},
year={2022},
publisher={Springer}

}

Updates

Related Repos

  1. RandLA-Net: Efficient Semantic Segmentation of Large-Scale Point Clouds GitHub stars
  2. SoTA-Point-Cloud: Deep Learning for 3D Point Clouds: A Survey GitHub stars
  3. 3D-BoNet: Learning Object Bounding Boxes for 3D Instance Segmentation on Point Clouds GitHub stars
  4. SpinNet: Learning a General Surface Descriptor for 3D Point Cloud Registration GitHub stars
  5. SQN: Weakly-Supervised Semantic Segmentation of Large-Scale 3D Point Clouds GitHub stars
  6. Not All Points Are Equal: Learning Highly Efficient Point-based Detectors for 3D LiDAR Point Clouds GitHub stars
  7. STPLS3D: A Large-Scale Synthetic and Real Aerial Photogrammetry 3D Point Cloud Dataset GitHub stars

About

πŸ”₯Urban-scale point cloud dataset (CVPR 2021 & IJCV 2022)

License:MIT License


Languages

Language:C++ 74.9%Language:Python 23.3%Language:Cython 1.4%Language:C 0.3%Language:Shell 0.1%