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"""CHASE-DB1 dataset for Vessel Segmentation (second-annotator protocol) 

5 

6* Split reference: [CHASEDB1-2012]_ 

7* Configuration resolution: 960 x 960 (after hand-specified crop) 

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

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

10""" 

11 

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

13 

14dataset = _maker("second-annotator") 

15second_annotator = _maker("first-annotator")