UkcheolShin / MS2-MultiSpectralStereoDataset

This is the official GitHub page of the Multi-Spectral Stereo (MS2) dataset described in CVPR 2023 paper.
https://sites.google.com/view/multi-spectral-stereo-dataset
47 stars 4 forks source link
dataset depth lidar multi-sensor nir-camera odometry rgb-camera slam stereo-vision thermal-camera

Multi-Spectral Stereo ($MS^2$) Outdoor Driving Dataset

This is the official github page of the $MS^2$ dataset described in the following paper.

This page provides a dataloader and simple python code for $MS^2$ dataset.

If you want to download the dataset and see the details, please visit the dataset page.

Deep Depth Estimation from Thermal Image

Ukcheol Shin, Jinsun Park, In So Kweon

IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), 2023

[Paper] [Dataset page]

Updates

$MS^2$ Dataset Specification

MS2 dataset provides:

Usage

  1. Download the datasets and place them in 'MS2dataset' folder in the following structure:
MS2dataset
├── sync_data
│   ├── <Sequence Name1>
│   ├── <Sequence Name2>
│   ├── ...
│   └── <Sequence NameN>
├── proj_depth
│   ├── <Sequence Name1>
│   ├── <Sequence Name2>
│   ├── ...
│   └── <Sequence NameN>
└── odom
    ├── <Sequence Name1>
    ├── <Sequence Name2>
    ├── ...
    └── <Sequence NameN>
  1. We provide a simple python code (demo.py) along with a dataloader to take a look at the provided dataset. To run the code, you need any version of Pytorch library.
    python demo.py --seq_name <Sequence Name> --modality rgb --data_format MonoDepth
    python demo.py --seq_name <Sequence Name> --modality nir --data_format StereoMatch
    python demo.py --seq_name <Sequence Name> --modality thr --data_format MultiViewImg