├── .DS_Store ├── .gitignore ├── CommonSystem ├── Config.py ├── MessageReceiver │ ├── EventManager.py │ ├── ExchangeMessageManagement.py │ └── message_fcn.py └── config.pkl ├── GraphicUserInterface ├── customized_function.py ├── images │ ├── IMG_0383 - Copy.jpg │ ├── OIP-C.jpg │ ├── blank-profile-picture.png │ ├── bottom.png │ ├── freq_preview.png │ ├── hardware.png │ ├── key_preview.png │ ├── keyboard.png │ ├── left.png │ ├── processing.png │ ├── right.png │ ├── top.png │ ├── u1.png │ ├── u12.png │ ├── u178.jpg │ ├── u178.png │ ├── u21.png │ ├── u22.png │ ├── u23.png │ ├── u24.png │ └── user.png ├── keyboard_function.py ├── keyboard_list │ ├── Keyboard 43 keys HS.csv │ ├── Keyboard 43 keys.csv │ ├── Keyboard 43 keys.xlsx │ ├── Mouse 12 keys no drag HS.csv │ ├── Mouse 12 keys no drag.csv │ ├── Mouse 13 keys HS.csv │ ├── Mouse 13 keys.csv │ └── read_me_first.txt ├── main.ui ├── main_ui.py ├── make_a_report.py ├── multi_process_worker.py ├── previewing.py ├── ui_StimulusControl.py ├── ui_hardware.py ├── ui_keyboard.py ├── ui_processing.py └── ui_user.py ├── LICENSE ├── OperationSystem ├── AnalysisProcess │ ├── AnalysisController.py │ ├── BasicAnalysisProcess.py │ ├── OperatorMethod │ │ ├── modeling.py │ │ ├── spatialFilter.py │ │ └── utils.py │ ├── TestingProcess.py │ ├── TrainingProcess.py │ └── WaitAnalysisProcess.py ├── Streaming │ ├── NeuroScanEEG.py │ └── NeuroScanMessage.py ├── checkpoint └── operationOperator.py ├── README.md ├── Resources └── u178.jpg ├── Result └── .DS_Store ├── StimulationSystem ├── .vscode │ ├── launch.json │ └── settings.json ├── EventController.py ├── StimulationProcess │ ├── BasicStimulationProcess.py │ ├── FinishProcess.py │ ├── IdleProcess.py │ ├── PrePareProcess.py │ ├── StimulateProcess.py │ ├── StimulationController.py │ └── viewContainer.py ├── UICreator │ ├── StimTargetRect.py │ ├── UIFactory.py │ ├── makePics.py │ └── stiConfig.py ├── pics │ └── ssvep │ │ ├── STI.pkl │ │ └── initial_frame.png └── stimulationOperator.py ├── finish_process_elapsed_time.log ├── frame_drops.log ├── key_frequency.csv ├── p_value.log ├── pictures ├── IMG_3326.jpg ├── mouse-control-experiment.png ├── ui-page-keys-b.png └── uni-brain-speller-logo.png └── requirements.txt /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/.gitignore -------------------------------------------------------------------------------- /CommonSystem/Config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/CommonSystem/Config.py -------------------------------------------------------------------------------- /CommonSystem/MessageReceiver/EventManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/CommonSystem/MessageReceiver/EventManager.py -------------------------------------------------------------------------------- /CommonSystem/MessageReceiver/ExchangeMessageManagement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/CommonSystem/MessageReceiver/ExchangeMessageManagement.py -------------------------------------------------------------------------------- /CommonSystem/MessageReceiver/message_fcn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/CommonSystem/MessageReceiver/message_fcn.py -------------------------------------------------------------------------------- /CommonSystem/config.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/CommonSystem/config.pkl -------------------------------------------------------------------------------- /GraphicUserInterface/customized_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/GraphicUserInterface/customized_function.py -------------------------------------------------------------------------------- /GraphicUserInterface/images/IMG_0383 - Copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/GraphicUserInterface/images/IMG_0383 - Copy.jpg -------------------------------------------------------------------------------- /GraphicUserInterface/images/OIP-C.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/GraphicUserInterface/images/OIP-C.jpg -------------------------------------------------------------------------------- /GraphicUserInterface/images/blank-profile-picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/GraphicUserInterface/images/blank-profile-picture.png -------------------------------------------------------------------------------- /GraphicUserInterface/images/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/GraphicUserInterface/images/bottom.png -------------------------------------------------------------------------------- /GraphicUserInterface/images/freq_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/GraphicUserInterface/images/freq_preview.png -------------------------------------------------------------------------------- /GraphicUserInterface/images/hardware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/GraphicUserInterface/images/hardware.png -------------------------------------------------------------------------------- /GraphicUserInterface/images/key_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/GraphicUserInterface/images/key_preview.png -------------------------------------------------------------------------------- /GraphicUserInterface/images/keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/GraphicUserInterface/images/keyboard.png -------------------------------------------------------------------------------- /GraphicUserInterface/images/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/GraphicUserInterface/images/left.png -------------------------------------------------------------------------------- /GraphicUserInterface/images/processing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/GraphicUserInterface/images/processing.png -------------------------------------------------------------------------------- /GraphicUserInterface/images/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/GraphicUserInterface/images/right.png -------------------------------------------------------------------------------- /GraphicUserInterface/images/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/GraphicUserInterface/images/top.png -------------------------------------------------------------------------------- /GraphicUserInterface/images/u1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/GraphicUserInterface/images/u1.png -------------------------------------------------------------------------------- /GraphicUserInterface/images/u12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/GraphicUserInterface/images/u12.png -------------------------------------------------------------------------------- /GraphicUserInterface/images/u178.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/GraphicUserInterface/images/u178.jpg -------------------------------------------------------------------------------- /GraphicUserInterface/images/u178.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/GraphicUserInterface/images/u178.png -------------------------------------------------------------------------------- /GraphicUserInterface/images/u21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/GraphicUserInterface/images/u21.png -------------------------------------------------------------------------------- /GraphicUserInterface/images/u22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/GraphicUserInterface/images/u22.png -------------------------------------------------------------------------------- /GraphicUserInterface/images/u23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/GraphicUserInterface/images/u23.png -------------------------------------------------------------------------------- /GraphicUserInterface/images/u24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/GraphicUserInterface/images/u24.png -------------------------------------------------------------------------------- /GraphicUserInterface/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/GraphicUserInterface/images/user.png -------------------------------------------------------------------------------- /GraphicUserInterface/keyboard_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/GraphicUserInterface/keyboard_function.py -------------------------------------------------------------------------------- /GraphicUserInterface/keyboard_list/Keyboard 43 keys HS.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/GraphicUserInterface/keyboard_list/Keyboard 43 keys HS.csv -------------------------------------------------------------------------------- /GraphicUserInterface/keyboard_list/Keyboard 43 keys.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/GraphicUserInterface/keyboard_list/Keyboard 43 keys.csv -------------------------------------------------------------------------------- /GraphicUserInterface/keyboard_list/Keyboard 43 keys.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/GraphicUserInterface/keyboard_list/Keyboard 43 keys.xlsx -------------------------------------------------------------------------------- /GraphicUserInterface/keyboard_list/Mouse 12 keys no drag HS.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/GraphicUserInterface/keyboard_list/Mouse 12 keys no drag HS.csv -------------------------------------------------------------------------------- /GraphicUserInterface/keyboard_list/Mouse 12 keys no drag.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/GraphicUserInterface/keyboard_list/Mouse 12 keys no drag.csv -------------------------------------------------------------------------------- /GraphicUserInterface/keyboard_list/Mouse 13 keys HS.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/GraphicUserInterface/keyboard_list/Mouse 13 keys HS.csv -------------------------------------------------------------------------------- /GraphicUserInterface/keyboard_list/Mouse 13 keys.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/GraphicUserInterface/keyboard_list/Mouse 13 keys.csv -------------------------------------------------------------------------------- /GraphicUserInterface/keyboard_list/read_me_first.txt: -------------------------------------------------------------------------------- 1 | Do Not Simply Change Name!!!! -------------------------------------------------------------------------------- /GraphicUserInterface/main.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/GraphicUserInterface/main.ui -------------------------------------------------------------------------------- /GraphicUserInterface/main_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/GraphicUserInterface/main_ui.py -------------------------------------------------------------------------------- /GraphicUserInterface/make_a_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/GraphicUserInterface/make_a_report.py -------------------------------------------------------------------------------- /GraphicUserInterface/multi_process_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/GraphicUserInterface/multi_process_worker.py -------------------------------------------------------------------------------- /GraphicUserInterface/previewing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/GraphicUserInterface/previewing.py -------------------------------------------------------------------------------- /GraphicUserInterface/ui_StimulusControl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/GraphicUserInterface/ui_StimulusControl.py -------------------------------------------------------------------------------- /GraphicUserInterface/ui_hardware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/GraphicUserInterface/ui_hardware.py -------------------------------------------------------------------------------- /GraphicUserInterface/ui_keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/GraphicUserInterface/ui_keyboard.py -------------------------------------------------------------------------------- /GraphicUserInterface/ui_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/GraphicUserInterface/ui_processing.py -------------------------------------------------------------------------------- /GraphicUserInterface/ui_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/GraphicUserInterface/ui_user.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/LICENSE -------------------------------------------------------------------------------- /OperationSystem/AnalysisProcess/AnalysisController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/OperationSystem/AnalysisProcess/AnalysisController.py -------------------------------------------------------------------------------- /OperationSystem/AnalysisProcess/BasicAnalysisProcess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/OperationSystem/AnalysisProcess/BasicAnalysisProcess.py -------------------------------------------------------------------------------- /OperationSystem/AnalysisProcess/OperatorMethod/modeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/OperationSystem/AnalysisProcess/OperatorMethod/modeling.py -------------------------------------------------------------------------------- /OperationSystem/AnalysisProcess/OperatorMethod/spatialFilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/OperationSystem/AnalysisProcess/OperatorMethod/spatialFilter.py -------------------------------------------------------------------------------- /OperationSystem/AnalysisProcess/OperatorMethod/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/OperationSystem/AnalysisProcess/OperatorMethod/utils.py -------------------------------------------------------------------------------- /OperationSystem/AnalysisProcess/TestingProcess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/OperationSystem/AnalysisProcess/TestingProcess.py -------------------------------------------------------------------------------- /OperationSystem/AnalysisProcess/TrainingProcess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/OperationSystem/AnalysisProcess/TrainingProcess.py -------------------------------------------------------------------------------- /OperationSystem/AnalysisProcess/WaitAnalysisProcess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/OperationSystem/AnalysisProcess/WaitAnalysisProcess.py -------------------------------------------------------------------------------- /OperationSystem/Streaming/NeuroScanEEG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/OperationSystem/Streaming/NeuroScanEEG.py -------------------------------------------------------------------------------- /OperationSystem/Streaming/NeuroScanMessage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/OperationSystem/Streaming/NeuroScanMessage.py -------------------------------------------------------------------------------- /OperationSystem/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/OperationSystem/checkpoint -------------------------------------------------------------------------------- /OperationSystem/operationOperator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/OperationSystem/operationOperator.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/README.md -------------------------------------------------------------------------------- /Resources/u178.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/Resources/u178.jpg -------------------------------------------------------------------------------- /Result/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/Result/.DS_Store -------------------------------------------------------------------------------- /StimulationSystem/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/StimulationSystem/.vscode/launch.json -------------------------------------------------------------------------------- /StimulationSystem/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/StimulationSystem/.vscode/settings.json -------------------------------------------------------------------------------- /StimulationSystem/EventController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/StimulationSystem/EventController.py -------------------------------------------------------------------------------- /StimulationSystem/StimulationProcess/BasicStimulationProcess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/StimulationSystem/StimulationProcess/BasicStimulationProcess.py -------------------------------------------------------------------------------- /StimulationSystem/StimulationProcess/FinishProcess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/StimulationSystem/StimulationProcess/FinishProcess.py -------------------------------------------------------------------------------- /StimulationSystem/StimulationProcess/IdleProcess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/StimulationSystem/StimulationProcess/IdleProcess.py -------------------------------------------------------------------------------- /StimulationSystem/StimulationProcess/PrePareProcess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/StimulationSystem/StimulationProcess/PrePareProcess.py -------------------------------------------------------------------------------- /StimulationSystem/StimulationProcess/StimulateProcess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/StimulationSystem/StimulationProcess/StimulateProcess.py -------------------------------------------------------------------------------- /StimulationSystem/StimulationProcess/StimulationController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/StimulationSystem/StimulationProcess/StimulationController.py -------------------------------------------------------------------------------- /StimulationSystem/StimulationProcess/viewContainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/StimulationSystem/StimulationProcess/viewContainer.py -------------------------------------------------------------------------------- /StimulationSystem/UICreator/StimTargetRect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/StimulationSystem/UICreator/StimTargetRect.py -------------------------------------------------------------------------------- /StimulationSystem/UICreator/UIFactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/StimulationSystem/UICreator/UIFactory.py -------------------------------------------------------------------------------- /StimulationSystem/UICreator/makePics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/StimulationSystem/UICreator/makePics.py -------------------------------------------------------------------------------- /StimulationSystem/UICreator/stiConfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/StimulationSystem/UICreator/stiConfig.py -------------------------------------------------------------------------------- /StimulationSystem/pics/ssvep/STI.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/StimulationSystem/pics/ssvep/STI.pkl -------------------------------------------------------------------------------- /StimulationSystem/pics/ssvep/initial_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/StimulationSystem/pics/ssvep/initial_frame.png -------------------------------------------------------------------------------- /StimulationSystem/stimulationOperator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/StimulationSystem/stimulationOperator.py -------------------------------------------------------------------------------- /finish_process_elapsed_time.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frame_drops.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/frame_drops.log -------------------------------------------------------------------------------- /key_frequency.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/key_frequency.csv -------------------------------------------------------------------------------- /p_value.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pictures/IMG_3326.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/pictures/IMG_3326.jpg -------------------------------------------------------------------------------- /pictures/mouse-control-experiment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/pictures/mouse-control-experiment.png -------------------------------------------------------------------------------- /pictures/ui-page-keys-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/pictures/ui-page-keys-b.png -------------------------------------------------------------------------------- /pictures/uni-brain-speller-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/pictures/uni-brain-speller-logo.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THU-BCI/uniBrain-Speller/HEAD/requirements.txt --------------------------------------------------------------------------------