The dataset viewer is not available for this split.
Error code: TooBigContentError
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
Towards automated analysis of large environments, hyperspectral sensors must be adapted into a format where they can be operated from mobile robots. In this dataset, we highlight hyperspectral datacubes collected from the Hyper-Drive imaging system. Our system collects and registers datacubes spanning the visible to shortwave infrared (660-1700 nm) in 33 wavelength channels. The system also simultaneously captures the ambient solar spectrum reflected off a white reference tile. The dataset consists of 500 labeled datacubes from on-road and off-road terrain compliant with the ATLAS.
This work first appeared at WHISPERS 2023 in Athens, Greece and is a product of the Robotics and Intelligent Vehicles Research Laboratory (RIVeR) at Northeastern University.
The paper is is available on Arxiv. If you use our data in your research, please make sure use the following citation:
@inproceedings{hanson2023hyper,
title={Hyper-Drive: Visible-Short Wave Infrared Hyperspectral Imaging Datasets for Robots in Unstructured Environments},
author={Hanson, Nathaniel and Pyatski, Benjamin and Hibbard, Samuel and DiMarzio, Charles and Pad{\i}r, Ta{\c{s}}k{\i}n},
booktitle={2023 13th Workshop on Hyperspectral Imaging and Signal Processing: Evolution in Remote Sensing (WHISPERS)},
pages={1--5},
year={2023},
organization={IEEE}
}
Sample Dataloading Code
Hugging Face by default has difficulty loading multi-channel TIFFs. This snippet shows an example of how to load the dataset. It is highly recommended to enable streaming
through the Hugging Face API.
from datasets import load_dataset, Image
from io import BytesIO
import tifffile
def decode_hyperspectral_tiff(batch):
batch["hsi"] = tifffile.imread(BytesIO(batch['hsi']["bytes"]))
return batch
dataset = load_dataset("nhanson2/hyper_drive", split='train', streaming=True)
dataset = dataset.cast_column("rgb", Image(mode='RGB', decode=True))
dataset = dataset.cast_column("hsi", Image(decode=False))
dataset = dataset.cast_column("segmentation", Image(mode='L', decode=True))
dataset = dataset.map(decode_hyperspectral_tiff)
In addition to the 500 labeled hyperspectral datacubes, raw ROS bagfiles generated of each of the sensor feeds at a higher frame rate are available here. These files are provided as an additional resource and do not contain semantic labels, but contain ~10,000 additional hyperspectral datacubes of in-between frames from the labeled dataset. It also contains additional datatypes for terrain analysis such as inertial measurement unit (IMU) data. To the best of the authors knowledge, it is the largest vehicle-centric hyperspectral dataset currently available!
This research was sponsored by the United States Army Core of Engineers (USACE) Engineer Research and Development Center (ERDC) Geospatial Research Laboratory (GRL) and was accomplished under Cooperative Agreement Federal Award Identification Number (FAIN) W9132V-22-2-0001. The views and conclusions contained in this document are those of the authors and should not be interpreted as representing the official policies, either expressed or implied, of USACE EDRC GRL or the U.S. Government. The U.S. Government is authorized to reproduce and distribute reprints for Government purposes notwithstanding any copyright notation herein.
license: mit configs: - config_name: default data_files: - split: train path: data/train-* dataset_info: features: - name: hsi dtype: string - name: rgb dtype: string - name: segmentation dtype: string - name: spectra dtype: array2_d: shape: - 1 - 305 dtype: float32 splits: - name: train num_bytes: 717630 num_examples: 504 download_size: 521529 dataset_size: 717630
- Downloads last month
- 78