# Common Super Resolution ## Format specification CSR format specification is available [here](https://github.com/openvinotoolkit/workbench/blob/master/docs/Workbench_DG/Dataset_Types.md#common-super-resolution-csr). Supported annotation types: - `SuperResolutionAnnotation` Supported attributes: - `upsampled` (`Image`): upsampled image ## Import Common Super Resolution dataset A Datumaro project with a CSR source can be created in the following way: ``` bash datum project create datum project import --format common_super_resolution ``` CSR dataset directory should have the following structure: ``` └─ Dataset/ ├── HR/ │ ├── .png │ ├── .png │ └── ... ├── LR/ │ ├── .png │ ├── .png │ └── ... └── upsampled/ # optional ├── .png ├── .png └── ... ``` 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_common_super_resolution_format.py)