open3d.data.DataDescriptor

class open3d.data.DataDescriptor

DataDescriptor is a class that describes a data file. It contains the URL mirrors to download the file, the MD5 hash of the file, and wether to extract the file.

__init__(*args, **kwargs)

Overloaded function.

  1. __init__(self: open3d.cpu.pybind.data.DataDescriptor, urls: List[str], md5: str, extract_in_subdir: str = ‘’) -> None

  2. __init__(self: open3d.cpu.pybind.data.DataDescriptor, url: str, md5: str, extract_in_subdir: str = ‘’) -> None

property extract_in_subdir

Subdirectory to extract the file. If empty, the file will be extracted in the root extract directory of the dataset.

property md5

MD5 hash of the data file.

property urls

URL to download the data file.