sustech-isus / suscape-devkit

Other
4 stars 1 forks source link

About

This is a python devkit package for the suscape dataset. It provides interfaces to load the dataset and to access the data.

Install

Install from pypi:

pip install suscape-devkit

for development use:

pip install -e .

verify installation


from suscape.dataset import SuscapeDataset
dataset = SuscapeDataset("dataset_root_path")
print(len(dataset.get_scene_names()), 'scenes')
print(dataset.get_scene_info("scene-000000"))