Skip to content

Latest commit

Β 

History

History
73 lines (64 loc) Β· 3.45 KB

File metadata and controls

73 lines (64 loc) Β· 3.45 KB

ScanNet200

Download ScanNet200 preprocessed data

The link to the preprocessed scannet200 data is available in the following link ScanNet200 preprocessed.

Important: please make sure to fill in the ScanNet terms of use, and send it to the scannet group email before downloading the pre-processed data.

Or process the raw scannet200 data

Download ScaNnet200 and follow Mask3D to preprocess data. A preprocessed point cloud scene has the following format id.npy. Kindly move all preprocessed scenes to their corresponding folders e.g. 0011_00.npy to ./data/scannet200/scene0011_00.

Next, you need to download the RGB-D sequence, which is available in OpenScene repository, or from the official Scannet200 website ScaNnet200.

ScanNet200 data folder should be structured as follows

./data
  └── scannet200
    └── ground_truth
            β”œβ”€β”€ scene0011_00.txt
            └── ...
    └── scene0011_00
            β”œβ”€β”€ poses                            <- folder with camera poses
            β”‚      β”œβ”€β”€ 0.txt 
            β”‚      β”œβ”€β”€ 1.txt 
            β”‚      └── ...  
            β”œβ”€β”€ color                           <- folder with RGB images
            β”‚      β”œβ”€β”€ 0.jpg (or .png/.jpeg)
            β”‚      β”œβ”€β”€ 1.jpg (or .png/.jpeg)
            β”‚      └── ...  
            β”œβ”€β”€ depth                           <- folder with depth images
            β”‚      β”œβ”€β”€ 0.png (or .jpg/.jpeg)
            β”‚      β”œβ”€β”€ 1.png (or .jpg/.jpeg)
            β”‚      └── ...  
            β”œβ”€β”€ intrinsics.txt                 <- camera intrinsics
            β”‚ 
            └── 0011_00.npy                <- preprocessed point cloud of the scene
            β”‚ 
            └── scene0011_00_vh_clean_2.ply      <- raw point cloud of the scene
    └── ... 

Replica

Run the following command.

sh scripts/get_replica_dataset.sh

A replica folder with the following format will be generated.

./data
  └── replica
    └── ground_truth
            β”œβ”€β”€ office0.txt
            └── ...
    └── office0
            β”œβ”€β”€ poses                            <- folder with camera poses
            β”‚      β”œβ”€β”€ 0.txt 
            β”‚      β”œβ”€β”€ 1.txt 
            β”‚      └── ...  
            β”œβ”€β”€ color                           <- folder with RGB images
            β”‚      β”œβ”€β”€ 0.jpg (or .png/.jpeg)
            β”‚      β”œβ”€β”€ 1.jpg (or .png/.jpeg)
            β”‚      └── ...  
            β”œβ”€β”€ depth                           <- folder with depth images
            β”‚      β”œβ”€β”€ 0.png (or .jpg/.jpeg)
            β”‚      β”œβ”€β”€ 1.png (or .jpg/.jpeg)
            β”‚      └── ...  
            β”œβ”€β”€ intrinsics.txt                 <- camera intrinsics
            β”‚ 
            └── office0_mesh.ply      <- raw point cloud of the scene
    └── ...