Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1#!/usr/bin/env python 

2# coding=utf-8 

3 

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

5 

6* Split reference: [ORLANDO-2017]_ 

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

8* See :py:mod:`bob.ip.binseg.data.hrf` for dataset details 

9""" 

10 

11from bob.ip.binseg.configs.datasets.hrf import _maker_1168 

12 

13dataset = _maker_1168("default") 

14 

15from bob.ip.binseg.configs.datasets.hrf.default_fullres import dataset as _fr 

16 

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

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