# NYU Depth Dataset V2 ## Format specification The original NYU Depth Dataset V2 is available [here](https://cs.nyu.edu/~silberman/datasets/nyu_depth_v2.html). Supported annotation types: - `DepthAnnotation` ## Import NYU Depth Dataset V2 The NYU Depth Dataset V2 is available for free [download](http://datasets.lids.mit.edu/nyudepthv2/). A Datumaro project with a NYU Depth Dataset V2 source can be created in the following way: ```bash datum project create datum project import --format nyu_depth_v2 ``` It is also possible to import the dataset using Python API: ```python import datumaro as dm dataset = dm.Dataset.import_from('', 'nyu_depth_v2') ``` NYU Depth Dataset V2 directory should have the following structure: ``` Dataset/ ├── 1.h5 ├── 2.h5 ├── 3.h5 └── ... ``` To make sure that the selected dataset has been added to the project, you can run `datum project info`, which will display the project information. ## Examples Examples of using this format from the code can be found in [the format tests](https://github.com/openvinotoolkit/datumaro/blob/develop/tests/unit/test_nyu_depth_v2_format.py)