OpenBCI_Processing-master

所属分类:数值算法/人工智能
开发工具:C/C++
文件大小:15237KB
下载次数:5
上传日期:2018-10-25 10:06:25
上 传 者ghl1231
说明:  这是一份脑电分析软件的源码,适用于OpenBci
(This is the source of EEG analysis software,use for OpenBci)

文件列表:
OpenBCI_GUI (0, 2015-05-05)
OpenBCI_GUI\AndroidManifest.xml (615, 2015-05-05)
OpenBCI_GUI\Button.pde (5114, 2015-05-05)
OpenBCI_GUI\ChannelController.pde (26186, 2015-05-05)
OpenBCI_GUI\ControlPanel.pde (25406, 2015-05-05)
OpenBCI_GUI\EEG_Processing.pde (10392, 2015-05-05)
OpenBCI_GUI\Gui_Manager.pde (37602, 2015-05-05)
OpenBCI_GUI\HeadPlot.pde (42296, 2015-05-05)
OpenBCI_GUI\HelpWidget.pde (1415, 2015-05-05)
OpenBCI_GUI\MenuList.pde (4793, 2015-05-05)
OpenBCI_GUI\OpenBCI_ADS1299.pde (43588, 2015-05-05)
OpenBCI_GUI\OpenBCI_GUI.pde (52494, 2015-05-05)
OpenBCI_GUI\ParseKey.pde (11582, 2015-05-05)
OpenBCI_GUI\Playground.pde (2650, 2015-05-05)
OpenBCI_GUI\SDConverter.pde (3086, 2015-05-05)
OpenBCI_GUI\SavedData\OpenBCI-RAW-2015-03-31_16-38-04.txt (1622188, 2015-05-05)
OpenBCI_GUI\SavedData\OpenBCI-RAW-2015-03-31_16-45-39.txt (9167020, 2015-05-05)
OpenBCI_GUI\SavedData\OpenBCI-RAW-2015-03-31_16-51-43.txt (4194476, 2015-05-05)
OpenBCI_GUI\ScatterTrace.pde (15543, 2015-05-05)
OpenBCI_GUI\Spectrogram.pde (6989, 2015-05-05)
OpenBCI_GUI\data (0, 2015-05-05)
OpenBCI_GUI\data\CourierNewPSMT-24.vlw (48653, 2015-05-05)
OpenBCI_GUI\data\EEG_Data (0, 2015-05-05)
OpenBCI_GUI\data\EEG_Data\SDconverted-2014-10-22_16-27-06.txt (287237, 2015-05-05)
OpenBCI_GUI\data\EEG_Data\SDconverted-2014-10-22_17-39-29.txt (308112, 2015-05-05)
OpenBCI_GUI\data\EEG_Data\notes_2013-12-24_meditation.txt (288, 2015-05-05)
OpenBCI_GUI\data\EEG_Data\notes_2013-12-24_relaxation.txt (262, 2015-05-05)
OpenBCI_GUI\data\EEG_Data\openBCI_2013-12-24_meditation.txt (19667907, 2015-05-05)
OpenBCI_GUI\data\EEG_Data\openBCI_2013-12-24_relaxation.txt (7461915, 2015-05-05)
OpenBCI_GUI\data\Raleway-Regular.otf (64368, 2015-05-05)
OpenBCI_GUI\data\Raleway-SemiBold.otf (65696, 2015-05-05)
OpenBCI_GUI\data\electrode_positions_12elec_scalp9.txt (180, 2015-05-05)
OpenBCI_GUI\data\electrode_positions_default.txt (198, 2015-05-05)
OpenBCI_GUI\data\electrode_positions_maker_faire_2013.txt (173, 2015-05-05)
OpenBCI_GUI\data\logo.png (4124, 2015-05-05)
OpenBCI_GUI\data\logo2.png (5578, 2015-05-05)
OpenBCI_GUI\dataFiles.pde (5245, 2015-05-05)
OpenBCI_GUI\dataTypes.pde (4986, 2015-05-05)
... ...

For the full getting started guide, go to [our Docs page](http://docs.openbci.com/tutorials/01-GettingStarted). ### 1. Download Processing for your operating system ![Processing IDE](readme-assets/Processing.png) **Before I continue, note that you don't need to write any code for this tutorial, though you will see all of the code that makes the OpenBCI GUI run!** First, go to the [Processing Downloads page](https://www.processing.org/download/?processing) and download the latest stable release for your operating system. Processing is an open source creative coding framework based on Java. If you are familiar with the Arduino environment, you'll feel right at home; the Processing IDE is nearly identical. If not, no worries! Once it's finished downloading, unzip it and place the Processing .app or .exe where you typically place your applications or programs. For more information on Processing or for debugging the steps in the next section, check out the [Processing Tutorials page](https://www.processing.org/tutorials/). ### 2. Download the OpenBCI GUI Processing code a. [Download the necessary files & directories](https://github.com/OpenBCI/OpenBCI_Processing/archive/master.zip) OR [clone the OpenBCI/OpenBCI_Processing repo](github-mac://openRepo/https://github.com/OpenBCI/OpenBCI_Processing) to your desktop (do this only if you're familiar with Github). b. Unzip the download. It should be called OpenBCI_Processing-master after unzip/extract it. c. Locate the Processing sketchbook directory on your computer. This should have been created automatically when you installed processing. Depending on your operating system, this directory's path is: * On Windows: c:/My Documents/Processing/ * On MAC: /Users/your_user_name/Documents/Processing/ * On Linux: /Home/your_user_name/sketchbook/ **Note:** this directory should be called "Processing" on Windows and Mac, and "Sketchbook" on Linux. This directory should already have a subdirectory called "libraries." If it does not, create the subdirectory. d. Now, from the OpenBCI_Processing-master directory that you downloaded and unzipped in parts (a) and (b) above, copy the OpenBCI_GUI directory and paste it in the Processing sketchbook directory that you located in part (c) above. e. Finally, copy the controlP5 & gwoptics directories from OpenBCI_Processing-master/libraries and paste them into the libraries directory of your Processing sketchbook. f. Now everything is where it should be! ### 3. Open Processing & launch the OpenBCI GUI a. If Processing is currently open, close it. The new libraries you added won't be recognized until you restart the application. ![Processing IDE](readme-assets/OpenBCI_GUI_Processing.png) b. Double-click any of the .pde files in the OpenBCI_GUI directory and all of the OpenBCI GUI code should open in the Processing IDE, as seen on the right. ![Play Button](readme-assets/playButton.png) c. Click the "run" button on the top left of the IDE, and the code should run! If it does not, make sure you installed your libraries correctly and that are using the latest version of Processing. If you continue to have issues, please refer to the [software section](http://www.openbci.com/index.php/forum/#/categories/software) of our forum for help. ![Synthetic](readme-assets/Synthetic.png) d. Once the GUI is running, select "SYNTHETIC (algorithmic)" and hit the "START SYSTEM" button to launch the GUI with a synthetic data generator. ![Start Data Stream](readme-assets/StartDataStream.png) e. Click the dark overlay on the GUI to exit the SYSTEM CONTROL PANEL and then hit the "Start Data Stream" button to begin the stream of synthetically generated EEG data. You should then see data streaming across the "EEG Data" graph on the left side of the GUI.

近期下载者

相关文件


收藏者