Home

Awesome

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