Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ignf/myria3d
Myria3D: Aerial Lidar HD Semantic Segmentation with Deep Learning
https://github.com/ignf/myria3d
deep-learning geodata lidar-point-cloud pointnet pytorch randla-net semantic-segmentation
Last synced: about 17 hours ago
JSON representation
Myria3D: Aerial Lidar HD Semantic Segmentation with Deep Learning
- Host: GitHub
- URL: https://github.com/ignf/myria3d
- Owner: IGNF
- License: bsd-3-clause
- Created: 2022-01-10T09:50:28.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-08-08T12:36:09.000Z (3 months ago)
- Last Synced: 2024-08-10T22:57:38.011Z (3 months ago)
- Topics: deep-learning, geodata, lidar-point-cloud, pointnet, pytorch, randla-net, semantic-segmentation
- Language: Python
- Homepage: https://ignf.github.io/myria3d/
- Size: 69.3 MB
- Stars: 159
- Watchers: 12
- Forks: 22
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Myria3D: Aerial Lidar HD Semantic Segmentation with Deep Learning
[![](https://shields.io/badge/-Lightning--Hydra--Template-017F2F?style=flat&logo=github&labelColor=303030)](https://github.com/ashleve/lightning-hydra-template)
[![CICD](https://github.com/IGNF/myria3d/actions/workflows/cicd.yaml/badge.svg)](https://github.com/IGNF/myria3d/actions/workflows/cicd.yaml)
[![Documentation Build](https://github.com/IGNF/myria3d/actions/workflows/gh-pages.yml/badge.svg)](https://github.com/IGNF/myria3d/actions/workflows/gh-pages.yml)
Myria3D is a deep learning library designed with a focused scope: the multiclass semantic segmentation of large scale, high density aerial Lidar points cloud.
The library implements the training of 3D Segmentation neural networks, with optimized data-processing and evaluation logics at fit time. Inference on unseen, large scale point cloud is also supported.
It allows for the evaluation of single-class IoU on the full point cloud, which results in reliable model evaluation.Myria3D is built upon [PyTorch](https://pytorch.org/). It keeps the standard data format
from [Pytorch-Geometric](https://pytorch-geometric.readthedocs.io/).
Its structure was bootstraped from [this code template](https://github.com/ashleve/lightning-hydra-template),
which heavily relies on [Hydra](https://hydra.cc/) and [Pytorch-Lightning](https://github.com/PyTorchLightning/pytorch-lightning) to enable flexible and rapid iterations of deep learning experiments.Although the library can be extended with new neural network architectures or new data signatures, it makes some opiniated choices in terms of neural network architecture, data processing logics, and inference logic. Indeed, it is initially built with the [French "Lidar HD" project](https://geoservices.ign.fr/lidarhd) in mind, with the ambition to map France in 3D with 10 pulse/m² aerial Lidar by 2025. The data will be openly available, including a semantic segmentation with a minimal number of classes: ground, vegetation, buildings, vehicles, bridges, others.
> → For installation and usage, please refer to [**Documentation**](https://ignf.github.io/myria3d/).
> → A stable, production-ready version of Myria3D is tracked by a [Production Release](https://github.com/IGNF/myria3d/releases/tag/prod-release-tag). In the release's assets are a trained multiclass segmentation model as well as the necessary configuration file to perform inference on French "Lidar HD" data. Those assets are provided for convenience, and are subject to change in time to reflect latest model training.
___Please cite Myria3D if it helped your own research. Here is an example BibTex entry:
```
@misc{gaydon2022myria3d,
title={Myria3D: Deep Learning for the Semantic Segmentation of Aerial Lidar Point Clouds},
url={https://github.com/IGNF/myria3d},
author={Charles Gaydon},
year={2022},
note={IGN (French Mapping Agency)},
}
```