├── .gitignore ├── LICENCE.md ├── README.md ├── __init__.py ├── burst_detector ├── __init__.py ├── bd_parameters.py ├── eeg_burst_detector.py ├── feature_set.py └── utils.py ├── data └── ellip_filt_coeffs.npz ├── demo.py ├── pics ├── burst_detector_imp_noise_eg.png ├── detector_example_for_website.png └── detector_example_for_website_v2.png └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otoolej/py_burst_detector/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otoolej/py_burst_detector/HEAD/LICENCE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otoolej/py_burst_detector/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /burst_detector/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /burst_detector/bd_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otoolej/py_burst_detector/HEAD/burst_detector/bd_parameters.py -------------------------------------------------------------------------------- /burst_detector/eeg_burst_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otoolej/py_burst_detector/HEAD/burst_detector/eeg_burst_detector.py -------------------------------------------------------------------------------- /burst_detector/feature_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otoolej/py_burst_detector/HEAD/burst_detector/feature_set.py -------------------------------------------------------------------------------- /burst_detector/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otoolej/py_burst_detector/HEAD/burst_detector/utils.py -------------------------------------------------------------------------------- /data/ellip_filt_coeffs.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otoolej/py_burst_detector/HEAD/data/ellip_filt_coeffs.npz -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otoolej/py_burst_detector/HEAD/demo.py -------------------------------------------------------------------------------- /pics/burst_detector_imp_noise_eg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otoolej/py_burst_detector/HEAD/pics/burst_detector_imp_noise_eg.png -------------------------------------------------------------------------------- /pics/detector_example_for_website.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otoolej/py_burst_detector/HEAD/pics/detector_example_for_website.png -------------------------------------------------------------------------------- /pics/detector_example_for_website_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otoolej/py_burst_detector/HEAD/pics/detector_example_for_website_v2.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | scipy 3 | matplotlib 4 | dataclasses 5 | numba 6 | --------------------------------------------------------------------------------