├── LICENSE ├── README.md ├── algorithms ├── eyeeeg.m ├── eyereg.m ├── eyesubtract.m ├── geyesub.m ├── sgeyesub.m └── spatial_filter.m ├── demo_main.m ├── demo_preprocessing.m ├── demo_testset.fdt ├── demo_testset.set ├── demo_testset_badepochs.mat ├── demo_trainset.fdt ├── demo_trainset.set ├── demo_trainset_badepochs.mat ├── external └── cov_shrink.m ├── paradigm └── eyeblock_paradigm.m └── utility ├── eogblink2events.m ├── equalizeLabels.m ├── eyepos2events.m ├── min_duration_threshold.m └── util_detect_saccades_and_blinks.m /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkobler/eyeartifactcorrection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkobler/eyeartifactcorrection/HEAD/README.md -------------------------------------------------------------------------------- /algorithms/eyeeeg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkobler/eyeartifactcorrection/HEAD/algorithms/eyeeeg.m -------------------------------------------------------------------------------- /algorithms/eyereg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkobler/eyeartifactcorrection/HEAD/algorithms/eyereg.m -------------------------------------------------------------------------------- /algorithms/eyesubtract.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkobler/eyeartifactcorrection/HEAD/algorithms/eyesubtract.m -------------------------------------------------------------------------------- /algorithms/geyesub.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkobler/eyeartifactcorrection/HEAD/algorithms/geyesub.m -------------------------------------------------------------------------------- /algorithms/sgeyesub.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkobler/eyeartifactcorrection/HEAD/algorithms/sgeyesub.m -------------------------------------------------------------------------------- /algorithms/spatial_filter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkobler/eyeartifactcorrection/HEAD/algorithms/spatial_filter.m -------------------------------------------------------------------------------- /demo_main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkobler/eyeartifactcorrection/HEAD/demo_main.m -------------------------------------------------------------------------------- /demo_preprocessing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkobler/eyeartifactcorrection/HEAD/demo_preprocessing.m -------------------------------------------------------------------------------- /demo_testset.fdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkobler/eyeartifactcorrection/HEAD/demo_testset.fdt -------------------------------------------------------------------------------- /demo_testset.set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkobler/eyeartifactcorrection/HEAD/demo_testset.set -------------------------------------------------------------------------------- /demo_testset_badepochs.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkobler/eyeartifactcorrection/HEAD/demo_testset_badepochs.mat -------------------------------------------------------------------------------- /demo_trainset.fdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkobler/eyeartifactcorrection/HEAD/demo_trainset.fdt -------------------------------------------------------------------------------- /demo_trainset.set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkobler/eyeartifactcorrection/HEAD/demo_trainset.set -------------------------------------------------------------------------------- /demo_trainset_badepochs.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkobler/eyeartifactcorrection/HEAD/demo_trainset_badepochs.mat -------------------------------------------------------------------------------- /external/cov_shrink.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkobler/eyeartifactcorrection/HEAD/external/cov_shrink.m -------------------------------------------------------------------------------- /paradigm/eyeblock_paradigm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkobler/eyeartifactcorrection/HEAD/paradigm/eyeblock_paradigm.m -------------------------------------------------------------------------------- /utility/eogblink2events.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkobler/eyeartifactcorrection/HEAD/utility/eogblink2events.m -------------------------------------------------------------------------------- /utility/equalizeLabels.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkobler/eyeartifactcorrection/HEAD/utility/equalizeLabels.m -------------------------------------------------------------------------------- /utility/eyepos2events.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkobler/eyeartifactcorrection/HEAD/utility/eyepos2events.m -------------------------------------------------------------------------------- /utility/min_duration_threshold.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkobler/eyeartifactcorrection/HEAD/utility/min_duration_threshold.m -------------------------------------------------------------------------------- /utility/util_detect_saccades_and_blinks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkobler/eyeartifactcorrection/HEAD/utility/util_detect_saccades_and_blinks.m --------------------------------------------------------------------------------