Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
plugin-GUI
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
yehaojie
plugin-GUI
Commits
2a74a595
Commit
2a74a595
authored
11 years ago
by
jsiegle
Browse files
Options
Downloads
Patches
Plain Diff
Allow user to set range on SpikePlots
parent
8ea73656
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Source/Processors/Visualization/SpikeDisplayCanvas.cpp
+78
-57
78 additions, 57 deletions
Source/Processors/Visualization/SpikeDisplayCanvas.cpp
Source/Processors/Visualization/SpikeDisplayCanvas.h
+18
-6
18 additions, 6 deletions
Source/Processors/Visualization/SpikeDisplayCanvas.h
with
96 additions
and
63 deletions
Source/Processors/Visualization/SpikeDisplayCanvas.cpp
+
78
−
57
View file @
2a74a595
...
...
@@ -397,6 +397,15 @@ SpikePlot::SpikePlot(SpikeDisplayCanvas* sdc, int elecNum, int p) :
initAxes
();
for
(
int
i
=
0
;
i
<
nChannels
;
i
++
)
{
UtilityButton
*
rangeButton
=
new
UtilityButton
(
"250"
,
Font
(
"Small Text"
,
10
,
Font
::
plain
));
rangeButton
->
setRadius
(
3.0
f
);
rangeButton
->
addListener
(
this
);
addAndMakeVisible
(
rangeButton
);
rangeButtons
.
add
(
rangeButton
);
}
}
...
...
@@ -447,6 +456,7 @@ void SpikePlot::initAxes()
WaveAxes
*
wAx
=
new
WaveAxes
(
WAVE1
+
i
);
wAxes
.
add
(
wAx
);
addAndMakeVisible
(
wAx
);
ranges
.
add
(
250.0
f
);
// default range is 250 microvolts
}
for
(
int
i
=
0
;
i
<
nProjAx
;
i
++
)
...
...
@@ -456,7 +466,7 @@ void SpikePlot::initAxes()
addAndMakeVisible
(
pAx
);
}
setLimitsOnAxes
();
// initialize the
l limits on the ax
es
setLimitsOnAxes
();
// initialize the
rang
es
}
void
SpikePlot
::
resized
()
...
...
@@ -495,29 +505,61 @@ void SpikePlot::resized()
}
for
(
int
i
=
0
;
i
<
nWaveAx
;
i
++
)
{
wAxes
[
i
]
->
setBounds
(
5
+
(
i
%
nWaveCols
)
*
axesWidth
/
nWaveCols
,
20
+
(
i
/
nWaveCols
)
*
axesHeight
,
axesWidth
/
nWaveCols
,
axesHeight
);
rangeButtons
[
i
]
->
setBounds
(
8
+
(
i
%
nWaveCols
)
*
axesWidth
/
nWaveCols
,
20
+
(
i
/
nWaveCols
)
*
axesHeight
+
axesHeight
-
18
,
25
,
15
);
}
for
(
int
i
=
0
;
i
<
nProjAx
;
i
++
)
pAxes
[
i
]
->
setBounds
(
5
+
(
1
+
i
%
nProjCols
)
*
axesWidth
,
20
+
(
i
/
nProjCols
)
*
axesHeight
,
axesWidth
,
axesHeight
);
}
void
SpikePlot
::
buttonClicked
(
Button
*
button
)
{
UtilityButton
*
buttonThatWasClicked
=
(
UtilityButton
*
)
button
;
int
index
=
rangeButtons
.
indexOf
(
buttonThatWasClicked
);
String
label
;
if
(
ranges
[
index
]
==
250.0
f
)
{
ranges
.
set
(
index
,
500.0
f
);
label
=
"500"
;
}
else
if
(
ranges
[
index
]
==
500.0
f
)
{
ranges
.
set
(
index
,
100.0
f
);
label
=
"100"
;
}
else
if
(
ranges
[
index
]
==
100.0
f
)
{
ranges
.
set
(
index
,
250.0
f
);
label
=
"250"
;
}
buttonThatWasClicked
->
setLabel
(
label
);
setLimitsOnAxes
();
}
void
SpikePlot
::
setLimitsOnAxes
()
{
//std::cout<<"SpikePlot::setLimitsOnAxes()"<<std::endl;
//
for (int i = 0; i < nWaveAx; i++)
//
wAxes[i]->set
YLims(limits[i][0], limits[i][1
]);
for
(
int
i
=
0
;
i
<
nWaveAx
;
i
++
)
wAxes
[
i
]
->
set
Range
(
ranges
[
i
]);
// // Each Projection sets its limits using the limits of the two waveform dims it represents.
// // Convert projection number to indecies, and then set the limits using those indices
// int j1, j2;
// for (int i = 0; i < nProjAx; i++)
// {
// n2ProjIdx(pAxes[i]->getType(), &j1, &j2);
// pAxes[i]->setYLims(limits[j1][0], limits[j1][1]);
// pAxes[i]->setXLims(limits[j2][0], limits[j2][1]);
// }
// Each projection sets its limits using the limits of the two waveform dims it represents.
// Convert projection number to indices, and then set the limits using those indices
int
j1
,
j2
;
for
(
int
i
=
0
;
i
<
nProjAx
;
i
++
)
{
pAxes
[
i
]
->
n2ProjIdx
(
pAxes
[
i
]
->
getType
(),
&
j1
,
&
j2
);
pAxes
[
i
]
->
setRange
(
ranges
[
j1
],
ranges
[
j2
]);
}
}
void
SpikePlot
::
initLimits
()
...
...
@@ -563,51 +605,13 @@ void SpikePlot::clear()
pAxes
[
i
]
->
clear
();
}
void
SpikePlot
::
pan
(
int
dim
,
bool
up
)
{
std
::
cout
<<
"SpikePlot::pan() dim:"
<<
dim
<<
std
::
endl
;
int
mean
=
(
limits
[
dim
][
0
]
+
limits
[
dim
][
1
])
/
2
;
int
dLim
=
limits
[
dim
][
1
]
-
mean
;
if
(
up
)
mean
=
mean
+
dLim
/
20
;
else
mean
=
mean
-
dLim
/
20
;
limits
[
dim
][
0
]
=
mean
-
dLim
;
limits
[
dim
][
1
]
=
mean
+
dLim
;
setLimitsOnAxes
();
}
void
SpikePlot
::
zoom
(
int
dim
,
bool
in
)
{
std
::
cout
<<
"SpikePlot::zoom()"
<<
std
::
endl
;
int
mean
=
(
limits
[
dim
][
0
]
+
limits
[
dim
][
1
])
/
2
;
int
dLim
=
limits
[
dim
][
1
]
-
mean
;
if
(
in
)
dLim
=
dLim
*
.90
;
else
dLim
=
dLim
/
.90
;
limits
[
dim
][
0
]
=
mean
-
dLim
;
limits
[
dim
][
1
]
=
mean
+
dLim
;
setLimitsOnAxes
();
}
// --------------------------------------------------
WaveAxes
::
WaveAxes
(
int
channel
)
:
GenericAxes
(
channel
),
drawGrid
(
true
),
bufferSize
(
10
),
spikeIndex
(
0
),
thresholdLevel
(
0.5
f
),
bufferSize
(
10
),
spikeIndex
(
0
),
thresholdLevel
(
0.5
f
),
range
(
250.0
f
),
isOverThresholdSlider
(
false
),
isDraggingThresholdSlider
(
false
)
{
...
...
@@ -626,6 +630,16 @@ WaveAxes::WaveAxes(int channel) : GenericAxes(channel), drawGrid(true),
}
}
void
WaveAxes
::
setRange
(
float
r
)
{
//std::cout << "Setting range to " << r << std::endl;
range
=
r
;
repaint
();
}
void
WaveAxes
::
paint
(
Graphics
&
g
)
{
g
.
setColour
(
Colours
::
black
);
...
...
@@ -681,8 +695,6 @@ void WaveAxes::plotSpike(const SpikeObject& s, Graphics& g)
int
dSamples
=
1
;
float
range
=
250.0
f
;
float
x
=
0.0
f
;
for
(
int
i
=
0
;
i
<
s
.
nSamples
-
1
;
i
++
)
...
...
@@ -905,7 +917,8 @@ void WaveAxes::mouseExit(const MouseEvent& event)
// --------------------------------------------------
ProjectionAxes
::
ProjectionAxes
(
int
projectionNum
)
:
GenericAxes
(
projectionNum
),
imageDim
(
500
)
ProjectionAxes
::
ProjectionAxes
(
int
projectionNum
)
:
GenericAxes
(
projectionNum
),
imageDim
(
500
),
rangeX
(
250
),
rangeY
(
250
)
{
projectionImage
=
Image
(
Image
::
RGB
,
imageDim
,
imageDim
,
true
);
...
...
@@ -919,16 +932,24 @@ ProjectionAxes::ProjectionAxes(int projectionNum) : GenericAxes(projectionNum),
}
void
ProjectionAxes
::
setRange
(
float
x
,
float
y
)
{
rangeX
=
(
int
)
x
;
rangeY
=
(
int
)
y
;
//std::cout << "Setting range to " << x << " " << y << std::endl;
repaint
();
}
void
ProjectionAxes
::
paint
(
Graphics
&
g
)
{
//g.setColour(Colours::orange);
//g.fillRect(5,5,getWidth()-5, getHeight()-5);
int
range
=
250
;
g
.
drawImage
(
projectionImage
,
0
,
0
,
getWidth
(),
getHeight
(),
0
,
range
,
range
,
range
);
0
,
imageDim
-
range
Y
,
range
X
,
range
Y
);
}
void
ProjectionAxes
::
updateSpikeData
(
const
SpikeObject
&
s
)
...
...
This diff is collapsed.
Click to expand it.
Source/Processors/Visualization/SpikeDisplayCanvas.h
+
18
−
6
View file @
2a74a595
...
...
@@ -163,7 +163,7 @@ private:
*/
class
SpikePlot
:
public
Component
class
SpikePlot
:
public
Component
,
Button
::
Listener
{
public:
SpikePlot
(
SpikeDisplayCanvas
*
,
int
elecNum
,
int
plotType
);
...
...
@@ -189,12 +189,12 @@ public:
void
getBestDimensions
(
int
*
,
int
*
);
void
clear
();
void
zoom
(
int
,
bool
);
void
pan
(
int
,
bool
);
float
minWidth
;
float
aspectRatio
;
void
buttonClicked
(
Button
*
button
);
private:
...
...
@@ -208,6 +208,8 @@ private:
OwnedArray
<
ProjectionAxes
>
pAxes
;
OwnedArray
<
WaveAxes
>
wAxes
;
OwnedArray
<
UtilityButton
>
rangeButtons
;
Array
<
float
>
ranges
;
void
initLimits
();
void
setLimitsOnAxes
();
...
...
@@ -291,6 +293,9 @@ public:
void
mouseDown
(
const
MouseEvent
&
event
);
void
mouseDrag
(
const
MouseEvent
&
event
);
void
setRange
(
float
);
float
getRange
()
{
return
range
;}
//MouseCursor getMouseCursor();
private
:
...
...
@@ -314,6 +319,8 @@ private:
int
spikeIndex
;
int
bufferSize
;
float
range
;
bool
isOverThresholdSlider
;
bool
isDraggingThresholdSlider
;
...
...
@@ -343,15 +350,16 @@ public:
void
clear
();
void
setRange
(
float
,
float
);
static
void
n2ProjIdx
(
int
i
,
int
*
p1
,
int
*
p2
);
private
:
void
updateProjectionImage
(
uint16_t
,
uint16_t
,
uint16_t
);
void
calcWaveformPeakIdx
(
const
SpikeObject
&
,
int
,
int
,
int
*
,
int
*
);
void
n2ProjIdx
(
int
i
,
int
*
p1
,
int
*
p2
);
int
ampDim1
,
ampDim2
;
Image
projectionImage
;
...
...
@@ -361,6 +369,10 @@ private:
int
imageDim
;
int
rangeX
;
int
rangeY
;
};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment