Skip to content
Snippets Groups Projects
vessel_xtest.py 694 B
Newer Older
#!/usr/bin/env python
# coding=utf-8

"""IOSTAR vessel cross-evaluation dataset
"""

from bob.ip.binseg.configs.datasets.drive.default import dataset as _drive
from bob.ip.binseg.configs.datasets.stare.ah import dataset as _stare
from bob.ip.binseg.configs.datasets.chasedb1.first_annotator import (
    dataset as _chase,
)
from bob.ip.binseg.configs.datasets.hrf.default import dataset as _hrf
from bob.ip.binseg.configs.datasets.iostar.vessel import dataset as _iostar

dataset = {
        "train": _iostar["train"],
        "test": _iostar["test"],
        "drive": _drive["test"],
        "stare": _stare["test"],
        "chasedb1": _chase["test"],
        "hrf": _hrf["test"],
        }