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"""COVD-IOSTAR + SSL for Vessel Segmentation 

5 

6* Configuration resolution: 1024 x 1024 

7 

8The dataset available in this file is composed of DRIVE STARE, HRF, and 

9CHASE-DB1 (with annotated samples), and IOSTAR "vessel" training set, without 

10labels, for training, and IOSTAR's "vessel" test set, for evaluation. 

11 

12For details on datasets, consult: 

13 

14* :py:mod:`bob.ip.binseg.data.stare` 

15* :py:mod:`bob.ip.binseg.data.drive` 

16* :py:mod:`bob.ip.binseg.data.hrf` 

17* :py:mod:`bob.ip.binseg.data.chasedb1` 

18* :py:mod:`bob.ip.binseg.data.iostar` 

19""" 

20 

21from bob.ip.binseg.configs.datasets.iostar.covd import dataset as _covd 

22from bob.ip.binseg.configs.datasets.iostar.vessel import dataset as _baseline 

23from bob.ip.binseg.data.utils import SSLDataset 

24 

25# copy dictionary and replace only the augmented train dataset 

26dataset = dict(**_covd) 

27dataset["__train__"] = SSLDataset(_covd["__train__"], _baseline["__train__"])