Generally, two parts of data are needed for training samnet, the original dataset, i.e., ScanNet and MegaDepth, and the offline generated dataset indices. The dataset indices store scenes, image pairs, and other metadata within each dataset used for training/validation/testing. For the MegaDepth dataset, the relative poses between images used for training are directly cached in the indexing files. However, the relative poses of ScanNet image pairs are not stored due to the enormous resulting file size.
We use depth maps provided in the original MegaDepth dataset as well as undistorted images, corresponding camera intrinsics and extrinsics preprocessed by D2-Net. You can download them separately from the following links.
- MegaDepth undistorted images and processed depths
- Note that we only use depth maps.
- Path of the download data will be referreed to as
/path/to/megadepth
- D2-Net preprocessed images
- Images are undistorted manually in D2-Net since the undistorted images from MegaDepth do not come with corresponding intrinsics.
- Path of the download data will be referreed to as
/path/to/megadepth_d2net
Please set up the ScanNet dataset following the official guide
NOTE: We use the python exported data, instead of the c++ exported one.
You can download the required dataset indices from the following link. After downloading, unzip the required files.
unzip downloaded-file.zip
# extract dataset indices
tar xf train-data/megadepth_indices.tar
tar xf train-data/scannet_indices.tar
# extract testing data (optional)
tar xf testdata/megadepth_test_1500.tar
tar xf testdata/scannet_test_1500.tar
We symlink the datasets to the data
directory under the main samnet project directory.
# scannet
# -- # train and test dataset
ln -s /path/to/scannet_train/* /path/to/samnet/data/scannet/train
ln -s /path/to/scannet_test/* /path/to/samnet/data/scannet/test
# -- # dataset indices
ln -s /path/to/scannet_indices/* /path/to/samnet/data/scannet/index
# megadepth
# -- # train and test dataset (train and test share the same dataset)
ln -sv /path/to/megadepth/phoenix /path/to/megadepth_d2net/Undistorted_SfM /path/to/samnet/data/megadepth/train
ln -sv /path/to/megadepth/phoenix /path/to/megadepth_d2net/Undistorted_SfM /path/to/samnet/data/megadepth/test
# -- # dataset indices
ln -s /path/to/megadepth_indices/* /path/to/samnet/data/megadepth/index
We provide training scripts of ScanNet and MegaDepth. The results in the samnet paper can be reproduced with 8 v100 GPUs. For a different setup, we scale the learning rate and its warm-up linearly, but the final evaluation results might vary due to the different batch size & learning rate used. Thus the reproduction of results in our paper is not guaranteed.
scripts/reproduce_train/indoor.sh
scripts/reproduce_train/outdoor.sh