├── .idea ├── .gitignore ├── .name ├── Online_BCI_framework.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── other.xml └── vcs.xml ├── BaseFramework.py ├── BasePreProcessing.py ├── BrainOn_overview.svg ├── LICENSE ├── README.md ├── ReadNeuroscan.py ├── __pycache__ ├── BaseFramework.cpython-38.pyc └── BasePreProcessing.cpython-38.pyc ├── algorithms ├── HDCA.py ├── SKLDA.py ├── STDA.py ├── __pycache__ │ ├── dsp.cpython-38.pyc │ └── tdca.cpython-38.pyc ├── algorithms.py ├── dsp.py ├── sHDCA.py └── tdca.py ├── demo_offline_model.py ├── demo_online_hybridBCI.py ├── flow_diagram.png ├── requirments.txt ├── simulate_online_CNT.py └── simulate_serve_new_packet.py /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | hybrid216_online_demo_100ms.py -------------------------------------------------------------------------------- /.idea/Online_BCI_framework.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrionHH/BrainOn-an-online-brain-computer-interface-BCI-framework/HEAD/.idea/Online_BCI_framework.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrionHH/BrainOn-an-online-brain-computer-interface-BCI-framework/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrionHH/BrainOn-an-online-brain-computer-interface-BCI-framework/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrionHH/BrainOn-an-online-brain-computer-interface-BCI-framework/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrionHH/BrainOn-an-online-brain-computer-interface-BCI-framework/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/other.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrionHH/BrainOn-an-online-brain-computer-interface-BCI-framework/HEAD/.idea/other.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrionHH/BrainOn-an-online-brain-computer-interface-BCI-framework/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /BaseFramework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrionHH/BrainOn-an-online-brain-computer-interface-BCI-framework/HEAD/BaseFramework.py -------------------------------------------------------------------------------- /BasePreProcessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrionHH/BrainOn-an-online-brain-computer-interface-BCI-framework/HEAD/BasePreProcessing.py -------------------------------------------------------------------------------- /BrainOn_overview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrionHH/BrainOn-an-online-brain-computer-interface-BCI-framework/HEAD/BrainOn_overview.svg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrionHH/BrainOn-an-online-brain-computer-interface-BCI-framework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrionHH/BrainOn-an-online-brain-computer-interface-BCI-framework/HEAD/README.md -------------------------------------------------------------------------------- /ReadNeuroscan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrionHH/BrainOn-an-online-brain-computer-interface-BCI-framework/HEAD/ReadNeuroscan.py -------------------------------------------------------------------------------- /__pycache__/BaseFramework.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrionHH/BrainOn-an-online-brain-computer-interface-BCI-framework/HEAD/__pycache__/BaseFramework.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/BasePreProcessing.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrionHH/BrainOn-an-online-brain-computer-interface-BCI-framework/HEAD/__pycache__/BasePreProcessing.cpython-38.pyc -------------------------------------------------------------------------------- /algorithms/HDCA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrionHH/BrainOn-an-online-brain-computer-interface-BCI-framework/HEAD/algorithms/HDCA.py -------------------------------------------------------------------------------- /algorithms/SKLDA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrionHH/BrainOn-an-online-brain-computer-interface-BCI-framework/HEAD/algorithms/SKLDA.py -------------------------------------------------------------------------------- /algorithms/STDA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrionHH/BrainOn-an-online-brain-computer-interface-BCI-framework/HEAD/algorithms/STDA.py -------------------------------------------------------------------------------- /algorithms/__pycache__/dsp.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrionHH/BrainOn-an-online-brain-computer-interface-BCI-framework/HEAD/algorithms/__pycache__/dsp.cpython-38.pyc -------------------------------------------------------------------------------- /algorithms/__pycache__/tdca.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrionHH/BrainOn-an-online-brain-computer-interface-BCI-framework/HEAD/algorithms/__pycache__/tdca.cpython-38.pyc -------------------------------------------------------------------------------- /algorithms/algorithms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrionHH/BrainOn-an-online-brain-computer-interface-BCI-framework/HEAD/algorithms/algorithms.py -------------------------------------------------------------------------------- /algorithms/dsp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrionHH/BrainOn-an-online-brain-computer-interface-BCI-framework/HEAD/algorithms/dsp.py -------------------------------------------------------------------------------- /algorithms/sHDCA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrionHH/BrainOn-an-online-brain-computer-interface-BCI-framework/HEAD/algorithms/sHDCA.py -------------------------------------------------------------------------------- /algorithms/tdca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrionHH/BrainOn-an-online-brain-computer-interface-BCI-framework/HEAD/algorithms/tdca.py -------------------------------------------------------------------------------- /demo_offline_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrionHH/BrainOn-an-online-brain-computer-interface-BCI-framework/HEAD/demo_offline_model.py -------------------------------------------------------------------------------- /demo_online_hybridBCI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrionHH/BrainOn-an-online-brain-computer-interface-BCI-framework/HEAD/demo_online_hybridBCI.py -------------------------------------------------------------------------------- /flow_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrionHH/BrainOn-an-online-brain-computer-interface-BCI-framework/HEAD/flow_diagram.png -------------------------------------------------------------------------------- /requirments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrionHH/BrainOn-an-online-brain-computer-interface-BCI-framework/HEAD/requirments.txt -------------------------------------------------------------------------------- /simulate_online_CNT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrionHH/BrainOn-an-online-brain-computer-interface-BCI-framework/HEAD/simulate_online_CNT.py -------------------------------------------------------------------------------- /simulate_serve_new_packet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrionHH/BrainOn-an-online-brain-computer-interface-BCI-framework/HEAD/simulate_serve_new_packet.py --------------------------------------------------------------------------------