Skip to content
Snippets Groups Projects
Commit f73cdf47 authored by jsiegle's avatar jsiegle
Browse files

Threshold slider can now be used to filter spikes

parent 10e5a30f
No related branches found
No related tags found
No related merge requests found
...@@ -105,11 +105,13 @@ public: ...@@ -105,11 +105,13 @@ public:
/** Signals when to create a new data directory when recording starts.*/ /** Signals when to create a new data directory when recording starts.*/
bool newDirectoryNeeded; bool newDirectoryNeeded;
bool isRecording;
private: private:
/** Keep the RecordNode informed of acquisition and record states. /** Keep the RecordNode informed of acquisition and record states.
*/ */
bool isRecording, isProcessing, signalFilesShouldClose; bool isProcessing, signalFilesShouldClose;
/** User-selectable directory for saving data files. Currently /** User-selectable directory for saving data files. Currently
defaults to the user's home directory. defaults to the user's home directory.
......
...@@ -22,6 +22,7 @@ ...@@ -22,6 +22,7 @@
*/ */
#include "SpikeDisplayCanvas.h" #include "SpikeDisplayCanvas.h"
#include "../RecordNode.h"
SpikeDisplayCanvas::SpikeDisplayCanvas(SpikeDisplayNode* n) : SpikeDisplayCanvas::SpikeDisplayCanvas(SpikeDisplayNode* n) :
processor(n), newSpike(false) processor(n), newSpike(false)
...@@ -118,6 +119,11 @@ void SpikeDisplayCanvas::refresh() ...@@ -118,6 +119,11 @@ void SpikeDisplayCanvas::refresh()
repaint(); repaint();
} }
RecordNode* SpikeDisplayCanvas::getRecordNode()
{
return processor->getProcessorGraph()->getRecordNode();
}
void SpikeDisplayCanvas::processSpikeEvents() void SpikeDisplayCanvas::processSpikeEvents()
{ {
...@@ -351,10 +357,12 @@ void SpikeDisplay::plotSpike(const SpikeObject& spike, int electrodeNum) ...@@ -351,10 +357,12 @@ void SpikeDisplay::plotSpike(const SpikeObject& spike, int electrodeNum)
SpikePlot::SpikePlot(SpikeDisplayCanvas* sdc, int elecNum, int p, String name_) : SpikePlot::SpikePlot(SpikeDisplayCanvas* sdc, int elecNum, int p, String name_) :
canvas(sdc), isSelected(false), electrodeNumber(elecNum), plotType(p), canvas(sdc), isSelected(false), electrodeNumber(elecNum), plotType(p),
limitsChanged(true), name(name_) limitsChanged(true), name(name_), isRecording(false)
{ {
recordNode = sdc->getRecordNode();
font = Font("Default", 15, Font::plain); font = Font("Default", 15, Font::plain);
switch (p) switch (p)
...@@ -432,12 +440,49 @@ void SpikePlot::processSpikeObject(const SpikeObject& s) ...@@ -432,12 +440,49 @@ void SpikePlot::processSpikeObject(const SpikeObject& s)
//std::cout<<"ElectrodePlot::processSpikeObject()"<<std::endl; //std::cout<<"ElectrodePlot::processSpikeObject()"<<std::endl;
// first, check if it's above threshold // first, check if it's above threshold
bool aboveThreshold = false;
for (int i = 0; i < nWaveAx; i++) for (int i = 0; i < nWaveAx; i++)
wAxes[i]->updateSpikeData(s); {
aboveThreshold = aboveThreshold | wAxes[i]->checkThreshold(s);
}
if (aboveThreshold)
{
for (int i = 0; i < nWaveAx; i++)
wAxes[i]->updateSpikeData(s);
for (int i = 0; i < nProjAx; i++)
pAxes[i]->updateSpikeData(s);
}
// then record it!
if (recordNode->isRecording)
{
if (!isRecording)
{
// open files
isRecording = true;
std::cout << "Start recording spikes." << std::endl;
}
if (aboveThreshold)
{
// write spike to disk
}
} else {
if (isRecording)
{
// close files
isRecording = false;
std::cout << "Stop recording spikes." << std::endl;
}
}
for (int i = 0; i < nProjAx; i++)
pAxes[i]->updateSpikeData(s);
} }
void SpikePlot::select() void SpikePlot::select()
...@@ -752,7 +797,7 @@ void WaveAxes::drawWaveformGrid(Graphics& g) ...@@ -752,7 +797,7 @@ void WaveAxes::drawWaveformGrid(Graphics& g)
} }
void WaveAxes::updateSpikeData(const SpikeObject& s) bool WaveAxes::updateSpikeData(const SpikeObject& s)
{ {
if (!gotFirstSpike) if (!gotFirstSpike)
{ {
...@@ -761,12 +806,39 @@ void WaveAxes::updateSpikeData(const SpikeObject& s) ...@@ -761,12 +806,39 @@ void WaveAxes::updateSpikeData(const SpikeObject& s)
SpikeObject newSpike = s; SpikeObject newSpike = s;
spikeIndex++; //if (checkThreshold(newSpike))
spikeIndex %= bufferSize; //{
spikeIndex++;
spikeIndex %= bufferSize;
spikeBuffer.set(spikeIndex, newSpike);
// return true;
// } else {
// return false;
// }
spikeBuffer.set(spikeIndex, newSpike);
}
bool WaveAxes::checkThreshold(const SpikeObject& s)
{
int sampIdx = 40*type;
for (int i = 0; i < s.nSamples-1; i++)
{
if (float(s.data[sampIdx]-32768)/float(*s.gain)*1000.0f > thresholdLevel)
{
return true;
}
sampIdx++;
}
return false;
} }
void WaveAxes::clear() void WaveAxes::clear()
...@@ -906,7 +978,7 @@ void ProjectionAxes::paint(Graphics& g) ...@@ -906,7 +978,7 @@ void ProjectionAxes::paint(Graphics& g)
0, imageDim-rangeY, rangeX, rangeY); 0, imageDim-rangeY, rangeX, rangeY);
} }
void ProjectionAxes::updateSpikeData(const SpikeObject& s) bool ProjectionAxes::updateSpikeData(const SpikeObject& s)
{ {
if (!gotFirstSpike) if (!gotFirstSpike)
{ {
...@@ -1034,7 +1106,7 @@ GenericAxes::~GenericAxes() ...@@ -1034,7 +1106,7 @@ GenericAxes::~GenericAxes()
} }
void GenericAxes::updateSpikeData(const SpikeObject& newSpike) bool GenericAxes::updateSpikeData(const SpikeObject& newSpike)
{ {
if (!gotFirstSpike) if (!gotFirstSpike)
{ {
......
...@@ -57,6 +57,7 @@ class GenericAxes; ...@@ -57,6 +57,7 @@ class GenericAxes;
class ProjectionAxes; class ProjectionAxes;
class WaveAxes; class WaveAxes;
class SpikePlot; class SpikePlot;
class RecordNode;
/** /**
...@@ -95,6 +96,8 @@ public: ...@@ -95,6 +96,8 @@ public:
void buttonClicked(Button* button); void buttonClicked(Button* button);
RecordNode* getRecordNode();
private: private:
SpikeDisplayNode* processor; SpikeDisplayNode* processor;
...@@ -199,6 +202,8 @@ public: ...@@ -199,6 +202,8 @@ public:
private: private:
bool isRecording;
int plotType; int plotType;
int nWaveAx; int nWaveAx;
...@@ -221,6 +226,8 @@ private: ...@@ -221,6 +226,8 @@ private:
Font font; Font font;
RecordNode* recordNode;
}; };
/** /**
...@@ -239,7 +246,7 @@ public: ...@@ -239,7 +246,7 @@ public:
virtual ~GenericAxes(); virtual ~GenericAxes();
virtual void updateSpikeData(const SpikeObject& s); virtual bool updateSpikeData(const SpikeObject& s);
void setXLims(double xmin, double xmax); void setXLims(double xmin, double xmax);
void getXLims(double* xmin, double* xmax); void getXLims(double* xmin, double* xmax);
...@@ -283,7 +290,8 @@ public: ...@@ -283,7 +290,8 @@ public:
WaveAxes(int channel); WaveAxes(int channel);
~WaveAxes() {} ~WaveAxes() {}
void updateSpikeData(const SpikeObject& s); bool updateSpikeData(const SpikeObject& s);
bool checkThreshold(const SpikeObject& spike);
void paint(Graphics& g); void paint(Graphics& g);
...@@ -315,6 +323,8 @@ private: ...@@ -315,6 +323,8 @@ private:
void drawThresholdSlider(Graphics& g); void drawThresholdSlider(Graphics& g);
Font font; Font font;
Array<SpikeObject> spikeBuffer; Array<SpikeObject> spikeBuffer;
...@@ -347,7 +357,7 @@ public: ...@@ -347,7 +357,7 @@ public:
ProjectionAxes(int projectionNum); ProjectionAxes(int projectionNum);
~ProjectionAxes() {} ~ProjectionAxes() {}
void updateSpikeData(const SpikeObject& s); bool updateSpikeData(const SpikeObject& s);
void paint(Graphics& g); void paint(Graphics& g);
......
...@@ -94,8 +94,6 @@ public: ...@@ -94,8 +94,6 @@ public:
/** Loads parameters from XML */ /** Loads parameters from XML */
virtual void loadVisualizerParameters(XmlElement* xml) { } virtual void loadVisualizerParameters(XmlElement* xml) { }
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment