-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathREADME.txt
18 lines (12 loc) · 981 Bytes
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
This is a JAVA library ensuring reading EEG data from BrainVisionRecorder and transforming data to double values.
An interface (DataTransformer) that allows integration to an other application is created. User can simply create an
instance of EEGDataTransformer that implements this interface
DataTransformer dt = new EEGDataTransformer();
This library also includes the Main class for testing purposes. Reader can use this class as example of usage of the interface.
This library is runnable in console. It shows the loaded amplitude values in the console. It expects arguments in
following formats:
java -jar EEGLoader_2.2.jar <name of header file (.vhdr)> <name of data file (.eeg or .avg)> <number of channel or electrode>
or
java -jar EEGLoader_2.2.jar <name of header file (.vhdr)> <number of channel or electrode>
In this case it is necessary that data file (.eeg or .avg) is in the same directory as the header file.
Note that numbers of channel starts at number 1.