Spaces:
Runtime error
Runtime error
File size: 1,955 Bytes
fadb92b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | ## Data preprocessing
### Structured3D
Simply download preprocessed data by RoomFormer at [here](https://polybox.ethz.ch/index.php/s/wKYWFsQOXHnkwcG). For more details, please refer to [RoomFormer's instructions](https://github.com/ywyue/RoomFormer/tree/main/data_preprocess).
To render binary floorplan images from GT annotations (as used in our paper), run `bash data_preprocess/tools/run_s3d.sh`.
### CubiCasa5K
Step 1: Download and extract [CubiCasa5K](https://zenodo.org/record/2613548) dataset.
Step 2: Run `bash data_preprocess/cubicasa5k/run.sh`.
### Raster2Graph
The instruction mainly follows Raster2Graph's instruction.
Step 1: Due to dataset proprietary restrictions, please apply for access to LIFULL HOME'S Data [here](https://www.nii.ac.jp/dsc/idr/en/lifull/).
Step 2: After obtaining access, download only the "photo-rent-madori-full-00" folder, which contains approximately 300,000 images.
Step 3: Apply for access to the annotation [here](https://docs.google.com/forms/d/e/1FAIpQLSexqNMjyvPMtPMPN7bSh_1u4Q27LZAT-S9lR_gpipNIMKV5lw/viewform).
The package has 3 folders:
- annot_npy, annot_json: the annotations saved in npy and json, respectively.
- original_vector_boundary: boundary boxes of "LIFULL HOME'S Data" which is used to create centered 512x512 images.
These folders should be saved in the same directory as `photo-rent-madori-full-00`. For example: `data/R2G_hr_dataset/`.
Step 4: Run `bash data_preprocess/tools/run_r2g.sh`.
### WAFFLE
It is noted that since WAFFLE only provides segmentation masks for a subset of 100 examples, so we only process this subset for the evaluation, not for training.
Step 1: Download data at [here](https://tauex-my.sharepoint.com/:f:/g/personal/hadarelor_tauex_tau_ac_il/EqMX9nRbJ9xFiK7dR_m07b8BldS2saoZ4-ockqncJb_Hrg?e=zGIuos)
Step 2: Run `bash data_preprocess/tools/run_waffle.sh`.
## Data visualization
Please refer to this script [tools/plot_data.sh](tools/plot_data.sh). |