Search found 12 matches

by ksp6
01 Oct 2014, 15:48
Forum: Known Issues
Topic: Error building a project in Windows 7 64 bit
Replies: 2
Views: 7432

Re: Error building a project in Windows 7 64 bit

I was finally able to get this work. Here is what I did just in case anyone faces the same issue. Just FYI, I am using Cmake version 3.0.2, and "Building against a Qt distribution outside the BCI2000 source tree" 1. Run cmd.exe as an administrator and cd into the \build directory. 2. Now r...
by ksp6
30 Sep 2014, 16:06
Forum: Known Issues
Topic: Error building a project in Windows 7 64 bit
Replies: 2
Views: 7432

Re: Error building a project in Windows 7 64 bit

I am facing the exact same problem. Any suggestions?

- Kedar
by ksp6
27 Jun 2014, 15:08
Forum: Known Issues
Topic: 0xc0000005 :(
Replies: 10
Views: 15076

Re: 0xc0000005 :(

I figured out a workaround for this. If I run BCI2000Shell.exe before invoking the batch script, I do not get this error. So this is kind of a hack. I am still trying to understand why it's happening though.

- Kedar
by ksp6
26 Jun 2014, 12:45
Forum: BCI Systems - Signal Processing
Topic: help for removing artifacts
Replies: 1
Views: 5838

Re: help for removing artifacts

Hi, There are several ways to deal with artifacts. You can use simple threshold/frequency based algorithms that can be implemented in real time fairly easily. You can do more complicated processing like Independent Component Analysis (ICA) offline. The EEGLAB matlab toolbox provides useful tools to ...
by ksp6
26 Jun 2014, 11:47
Forum: Known Issues
Topic: 0xc0000005 :(
Replies: 10
Views: 15076

Re: 0xc0000005 :(

Hi guys, This error has come to haunt me again, except this time its even more weird. I get this error only if I run a batch script. If I manually load the modules in the Operator everything works fine. But if I run them in a batch script it gives me the error. I tried deleting the Operator.ini file...
by ksp6
02 Jun 2014, 16:06
Forum: BCI Systems - User Applications
Topic: Need help with Operator Scripting
Replies: 1
Views: 3705

Re: Need help with Operator Scripting

I figured out a way to do this. Using GET STATE commands it is much easier to do what I wanted to do. I did not notice them earlier. Everything works fine.

- Kedar
by ksp6
30 May 2014, 16:18
Forum: BCI Systems - User Applications
Topic: Need help with Operator Scripting
Replies: 1
Views: 3705

Need help with Operator Scripting

Hi, I wish to run a sequence of applications automatically by simply running a batch file. Here is the general flow: Start Task 1 --> Wait until it is over --> Start Task 2 ... and so on I am trying to do this using Operator Scripting. I am aware that I can set "Running" to 0 or 1 from the...
by ksp6
10 May 2013, 11:38
Forum: Known Issues
Topic: 0xc0000005 :(
Replies: 10
Views: 15076

Re: 0xc0000005 :(

VOILA... Deleting Operator.ini does work. I wonder why that happens though. From what I understand, Operator.ini, keeps a log of changes in the Operator configuration, visualization etc. I remember playing with a lot of 'Config' parameters and they are all logged in Operator.ini. Besides the positio...
by ksp6
09 May 2013, 17:41
Forum: Known Issues
Topic: 0xc0000005 :(
Replies: 10
Views: 15076

Re: 0xc0000005 :(

Hi, I have run into the same error today. Everything was working fine and suddenly it gave me 'Unhandled Win32 exception 0xc00000005: ACCESS_VIOLATION Terminating Operator Module'. Initially I thought there was a bug in my application but it still gives me the same error if I run: Operator --> Signa...
by ksp6
25 Mar 2013, 07:48
Forum: BCI Systems - User Applications
Topic: QTimer working slow with BCI2000
Replies: 4
Views: 6804

Re: QTimer working slow with BCI2000

I get your point now. I synchronized with Process() and now it works fine. I also replaced the QTimer with QTime to handle timing.
Thanks for the help.

- Kedar.
by ksp6
22 Mar 2013, 14:03
Forum: BCI Systems - User Applications
Topic: QTimer working slow with BCI2000
Replies: 4
Views: 6804

Re: QTimer working slow with BCI2000

Hi Juergen, Thanks for your reply. I am using the StartRun() and StopRun() functions in BCI2000. Here's a short snippet. void CognitiveLoadTaskFilter::StartRun() { // The user has just pressed "Start" (or "Resume") bciout << "Hello World!" << endl; // mTaskObj is an obj...
by ksp6
22 Mar 2013, 12:10
Forum: BCI Systems - User Applications
Topic: QTimer working slow with BCI2000
Replies: 4
Views: 6804

QTimer working slow with BCI2000

Hi, We are trying to study the changes in EEG power levels with different levels of Cognitive Load. For the same, I am trying to develop a new Application in BCI2000. It is the n-Back Test which is widely used to impose Working Memory Load on the subject. So far I have developed the nBackTest same i...