Coverage for src/deepdraw/configs/datasets/hrf/default.py: 100%

6 statements  

« prev     ^ index     » next       coverage.py v7.3.1, created at 2023-11-30 15:00 +0100

1# SPDX-FileCopyrightText: Copyright © 2023 Idiap Research Institute <contact@idiap.ch> 

2# 

3# SPDX-License-Identifier: GPL-3.0-or-later 

4 

5"""HRF dataset for Vessel Segmentation (default protocol) 

6 

7* Split reference: [ORLANDO-2017]_ 

8* Configuration resolution: 1168 x 1648 (about half full HRF resolution) 

9* See :py:mod:`deepdraw.data.hrf` for dataset details 

10""" 

11 

12from . import _maker_1168 

13from .default_fullres import dataset as _fr 

14 

15dataset = _maker_1168("default") 

16dataset["train (full resolution)"] = _fr["train"] 

17dataset["test (full resolution)"] = _fr["test"]