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"""STARE dataset for Vessel Segmentation (annotator VK) 

5 

6* Configuration resolution: 704 x 608 (after padding) 

7* Split reference: [MANINIS-2016]_ 

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

9* This dataset offers a second-annotator comparison (using protocol "ah") 

10""" 

11 

12from bob.ip.binseg.configs.datasets.stare import _maker 

13 

14dataset = _maker("vk") 

15second_annotator = _maker("ah")