Questions tagged [emokit]

Open source driver for accessing raw data from the Emotiv EPOC EEG headset

Emokit is a set of language for user space access to the raw stream data from the Emotiv EPOC headset. Note that this will not give you processed data (i.e. anything available in the Emo Suites in the software), just the raw sensor data.

The C library is backed by hidapi, and should work on any platform that hidapi also works on.

Note that as of May 2016, the repositories have split:

11 questions
3
votes
1 answer

EEG raw data band filtering using matlab

I have some raw EEG data in csv files captured using Emotiv EPOC as part of experiments I am doing for my undergrad thesis. I uploaded one of the files here for reference. I wish to perform band pass filtering on the data in the certain bands delta…
John Demetriou
  • 4,093
  • 6
  • 52
  • 88
2
votes
2 answers

Get sensor details for Emotiv Epoc +

I would like to get a raw eeg for Epoc+ helment Calls to method engine.HeadsetGetSensorDetails(EdkDll.IEE_InputChannels_t.IEE_CHAN_AF3); from C# wrapper of community sdk, lead to exception in unmanaged code (edk.dll) Does anyone access raw eeg from…
user2136963
  • 2,526
  • 3
  • 22
  • 41
2
votes
1 answer

JUnit - NullPointerException

ContactDTO cDto = new ContactDTO(); cDto.setTitle("Mr"); cDto.setFirstName("Pritam"); cDto.setLastName("Mohapatra"); cDto.setTelephone("9439586575"); cDto.setEmail("pritam.pritam176@gmail.com"); cDto.setBetreff("test value"); cDto.setAnfrage("test…
2
votes
2 answers

Emotiv Epoc Data Acquisition

I tried to get some answers to my questions from the Emotiv support team and community but no one answered so I thought maybe some of you are using the Emotiv API. I'm having a hard time figuring out how the raw data acquisition process works. I…
1
vote
0 answers

Correct pyhidapi version not found while trying to install emokit

I'm trying to install emokit on OS X 10.12.5 machine. When I try to do it with either pip or pip3, I get the following error: My-MacBook-Pro:~ Joonas$ pip3 install emokit Collecting emokit Using cached emokit-0.0.8.tar.gz Collecting…
basse
  • 1,088
  • 1
  • 19
  • 40
1
vote
1 answer

How to interpret and use Emokit data?

I am using EmoKit (https://github.com/openyou/emokit) to retrieve data. The sample data looks like as follows: +========================================================+ | Sensor | Value | Quality | Quality L1 | Quality L2…
chochim
  • 1,710
  • 5
  • 17
  • 30
1
vote
1 answer

Emokit SDK: 'Emotiv' object has no attribute 'serialNum' in Python

I'm trying to compile a file from the SDK for the headset Emotiv Epoc. But when I compile it I get this error message: "Traceback (most recent call last): File "emotiv.py", line 419, in a.setup() File "emotiv.py", line 232, in setup …
Rosie
  • 94
  • 2
  • 11
0
votes
1 answer

winddk.h and WDK 10 problems in vs2015

I have a C project(emotiv-emokit-c:https://github.com/petrs/emokit/) that I'm trying to understand, working on Windows 10, VS2015 that additionally required winddk.h along with: hidpi.h, hidsdi.h, hidusage.h, setupapi.h, hid.lib which I downloaded…
bergdi
  • 37
  • 2
  • 8
0
votes
1 answer

cmake source directory does not contain cmake lists

I am trying to install emokit on an Ubuntu partition of my macbook pro. I am up to step 48 in the instructions, when I receive an error: matt@MattsUbuntu:~/Downloads/emokit-master$ cmake . CMake Error: The source directory…
Matt Groth
  • 470
  • 4
  • 20
0
votes
2 answers

which channels of emotiv epoc to use for motor imagery?

I am working on a bci motor imagery project for my undergrad thesis.I use emotiv epoc and extract raw data with emokit from github https://github.com/openyou/emokit. I try to find which channels to use for a four class motor imagery…
0
votes
1 answer

Junit mokito util.properties show null after moking

I write a email testing using greenmail and JUNIT with mokito but when I use when(emailproperties.getUsername()).thenReturn("abc@gmail.com"); show null Here is my code public class EmailServiceImplTest { @InjectMocks EmailServiceImpl…