Remote Sensing Data-Fetcher and Data-Loader for Joint Classification of Hyperspectral and LiDAR Data
Project description
rs-fusion-datasets
rs-fusion-datasets is a Python package for frictionless multimodal remote sensing data handling. It simplifies the workflow for joint classification of Hyperspectral and LiDAR/SAR data with the following features:
- Out-of-the-Box PyTorch Dataloaders: Provides standardized PyTorch Datasets API with automated downloading, loading and preprocessing.
- Rich Toolkit: Built-in utilities for HSI-to-RGB conversion, label mapping, dataset splitting, and automated metric calculation (Confusion Matrix, CA, OA, AA, Kappa).
- Raw Data Access: Direct raw data APIs for non-deep learning workflows, allowing to build traditional ML baselines without PyTorch dependencies.
| Dataset | Source | Fetcher Function | Torch Dataset | Modals | Note |
|---|---|---|---|---|---|
| Houston 2013 | Official Website | fetch_houston2013 |
Houston2013 |
HSI,LiDAR | |
| Houston 2013 | S2ENet | fetch_houston2013_mmr |
Houston2013Mmr |
HSI,LiDAR | |
| Trento | tyust-dayu | fetch_trento |
Trento |
HSI,LiDAR | |
| MUUFL | Official GitHub | fetch_muufl |
Muufl |
HSI,LiDAR | |
| Houston 2018 | DCMNet | fetch_houston2018_ouc |
Houston2018Ouc |
HSI,LiDAR | May have different channel numbers |
| Augsburg | DCMNet | fetch_augsburg_ouc |
AugsburgOuc |
HSI,SAR | |
| Berlin | DCMNet | fetch_berlin_ouc |
BerlinOuc |
HSI,SAR |
Quick Start
Install
pip install rs-fusion-datasets
PyTorch Datasets
PyTorch Datasets work out-of-the-box with automated downloading, splitting and cropping.
from rs_fusion_datasets import Houston2013
from torch.utils.data import DataLoader
testset = Houston2013('test', patch_size=11)
for x_h, x_l, y, extras in DataLoader(testset, batch_size=64):
print('x_h', x_h.shape) # (64, 144, 11, 11)
print('x_l', x_l.shape) # (64, 1, 11, 11)
print('y' , y.shape) # (64, 15, 1)
Benchmarking and Visulazation
The benchmarker of datasets can visualize the predicted labels and compute the confusion matrix, OA, AA, CA, Kappa.
import torch
from torch.utils.data import DataLoader
from rs_fusion_datasets import AugsburgOuc
testset = AugsburgOuc('test', patch_size=9)
benchmarker = testset.benchmarker()
for hsi, dsm, lbl, ext in DataLoader(testset, batch_size=64, drop_last=True):
y_hat = torch.randn(64, testset.n_class)
benchmarker.add_sample(ext['location'], y_hat, lbl)
print(f"OA: {benchmarker.oa()}, AA: {benchmarker.aa()}, Kappa: {benchmarker.kappa()}")
predicted_map = benchmarker.predicted_image() # Full predicted label map, CHW format
error_map = benchmarker.error_image( underlying=testset.hsi2rgb()) # Spatial distribution of errors, CHW format
Raw Data Access
Direct raw data APIs are provided for accessing raw and full data.
from rs_fusion_datasets import fetch_muufl, split_spmatrix
hsi, dsm, label, info = fetch_muufl()
print('hsi', hsi.shape) # (64, 325, 220)
print('dsm', dsm.shape) # ( 1, 325, 220)
print(label.shape) # (325, 220)
train_label, test_label = split_spmatrix(label, n_sample_perclass=20)
assert len(train_label.data) == 20 * info['n_class']
| Function | Returns |
|---|---|
fetch_houston2013 |
HSI, DSM, TrainLabel, TestLabel, Info |
fetch_houston2013_mmr |
HSI, DSM, TrainLabel, TestLabel, Info |
fetch_trento |
HSI, DSM, FullLabel, Info |
fetch_muufl |
HSI, DSM, FullLabel, Info |
fetch_houston2018_ouc |
HSI, DSM, TrainLabel, TestLabel, FullLabel, Info |
fetch_augsburg_ouc |
HSI, DSM, TrainLabel, TestLabel, FullLabel, Info |
fetch_berlin_ouc |
HSI, DSM, TrainLabel, TestLabel, FullLabel, Info |
Dataset Splitting
Default splitting:
from rs_fusion_datasets import Houston2013
trainset = Houston2013('train', patch_size=9) # 2832 samples
testset = Houston2013('test' , patch_size=9) # 12197 samples
Sampling 20 samples in every class:
trainset = Houston2013('train', patch_size=9, n_train_perclass=20) # 20*n_class
testset = Houston2013('test' , patch_size=9, n_train_perclass=20) # the rest
Sampling 10% in every class:
trainset = Houston2013('train', patch_size=9, n_train_perclass=0.1) # 10%
testset = Houston2013('test' , patch_size=9, n_train_perclass=0.1) # the rest
Help
- PyTorch Demo: train your model in about 70 lines of code with rs-fusion-datasets
- PyTorch Full Demo: a more powerful showcase of rs-fusion-datasets
- User Manual
- Developer Manual
- Test cases
Maintaince Status
This project is under passive maintenance, focusing on critical bugs, security, and documentation. Related issues and PRs are welcomed. If you are interested in take over the project or have alternative recommendations, please feel free to open an issue.
Known Issues
[!IMPORTANT]
version <=0.18.3has a serious bug when usingbenchmarker.predicted_image(). This is fixed in the later versions.version <= 0.18.4has a critical bug when usingfetch_houston2013andHouston2013with 30 samples not loaded.fetch_houston2013_mmrandHouston2013Mmris not affected. This is fixed in the later versions.
Star History
License
Copyright 2023-2026 songyz2019
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Acknowledgments
We gratefully acknowledge the following individuals and organizations for making this project possible:
- The authors of DCMNet for making their processed datasets available. Their efforts in significantly minimizing the distribution size made it possible for us to efficiently distribute and utilize the data.
- The authors of S2ENet for making their processed Houston 2013 dataset available.
- The authors of the Augsburg dataset.
@article{hu2022mdas, title={MDAS: A New Multimodal Benchmark Dataset for Remote Sensing}, author={Hu, Jingliang and Liu, Rong and Hong, Danfeng and Camero, Andr{\'e}s and Yao, Jing and Schneider, Mathias and Kurz, Franz and Segl, Karl and Zhu, Xiao Xiang}, journal={Earth System Science Data Discussions}, pages={1--26}, year={2022}, publisher={Copernicus GmbH}, doi={10.5194/essd-2022-155}}
- The authors of the Berlin dataset.
Okujeni, A.; Van Der Linden, S.; Hostert, P. Berlin-Urban-Gradient dataset 2009—An EnMAP Preparatory Flight Campaign (Datasets); GFZ Data Services: Potsdam, Germany, 2016.
- The authors of the Houston 2018 dataset.
The dataset can be downloaded here subject to the terms and conditions listed below. If you wish to use the data, please be sure to email us and provide your Name, Contact information, affiliation (University, research lab etc.), and an acknowledgement that you will cite this dataset and its source appropriately, as well as provide an acknowledgement to the IEEE GRSS IADF and the Hyperspectral Image Analysis Lab at the University of Houston, in any manuscript(s) resulting from it.
- The authors of the Houston2013 dataset. The
2013_IEEE_GRSS_DF_Contest_Samples_VA.txtin this repo is exported from original2013_IEEE_GRSS_DF_Contest_Samples_VA.roi.The dataset was collected by NCALM at the University of Houston (UH) in June 2012, covering the University of Houston campus. The data was prepared and pre-processed with the assistance of Xiong Zhou, Minshan Cui, Abhinav Singhania and Dr. Juan Carlos Fernández Díaz. The Data Fusion Technical Committee would like to express its great appreciation to NCALM for providing the data, to UH students, staff and faculty for preparing the data, and to GRSS and DigitalGlobe Inc. for their continuous support in providing funding and resources for the Data Fusion Contest.
- The authors of the Muufl dataset.
Note: If this data is used in any publication or presentation the following reference must be cited: P. Gader, A. Zare, R. Close, J. Aitken, G. Tuell, “MUUFL Gulfport Hyperspectral and LiDAR Airborne Data Set,” University of Florida, Gainesville, FL, Tech. Rep. REP-2013-570, Oct. 2013. If the scene labels are used in any publication or presentation, the following reference must be cited: X. Du and A. Zare, “Technical Report: Scene Label Ground Truth Map for MUUFL Gulfport Data Set,” University of Florida, Gainesville, FL, Tech. Rep. 20170417, Apr. 2017. Available: http://ufdc.ufl.edu/IR00009711/00001. If any of this scoring or detection code is used in any publication or presentation, the following reference must be cited: T. Glenn, A. Zare, P. Gader, D. Dranishnikov. (2016). Bullwinkle: Scoring Code for Sub-pixel Targets (Version 1.0) [Software]. Available from https://github.com/GatorSense/MUUFLGulfport/.
- The authors of the Trento dataset. Dafault url of Trento dataset is
https://github.com/tyust-dayu/Trento/tree/b4afc449ce5d6936ddc04fe267d86f9f35536afd - GitHub for hosting some dataset files. rs-fusion-datasets-dist host some dataset files that are public available for download but have no direct link found for automatically downloading (for example, the author uploads it via net disk apps). The suffix of dataset is only an 3-character UID. I upload these dataset AS IS, without editing anything, making sure it is just a mirror.
- The authors of torchgeo. This project is inspired by torchgeo
- The authors of torchrs. This project is inspired by torchrs
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file rs_fusion_datasets-1.0.0.tar.gz.
File metadata
- Download URL: rs_fusion_datasets-1.0.0.tar.gz
- Upload date:
- Size: 1.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.10 {"installer":{"name":"uv","version":"0.11.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1718a7401a1b58d2a473f583d2d921e0f9c68aebbcd688fe6b8db4644dd3f68c
|
|
| MD5 |
4cb4c63525d031192d5d4b42cf6137bf
|
|
| BLAKE2b-256 |
ab78e313aa142a192ce3f0e7d6046ab734b1256ac6e5416786200863bd5e4421
|
File details
Details for the file rs_fusion_datasets-1.0.0-py3-none-any.whl.
File metadata
- Download URL: rs_fusion_datasets-1.0.0-py3-none-any.whl
- Upload date:
- Size: 51.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.10 {"installer":{"name":"uv","version":"0.11.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e4edc40f8a0a1fa07c5849c50e0b35fa08322a5efb63d93b31972e8097ad64d1
|
|
| MD5 |
31e03c7eeb1c84dccc671001148b1361
|
|
| BLAKE2b-256 |
ad880a772693d2a3140f8f549ba948af19d23d76cbc60f83f046ddd6b095d7d7
|