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
d2bc84a9
Commit
d2bc84a9
authored
9 years ago
by
Jakob Voigts
Browse files
Options
Downloads
Patches
Plain Diff
added zero markers
parent
733cf837
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/Plugins/LfpDisplayNode/LfpDisplayCanvas.cpp
+15
-28
15 additions, 28 deletions
Source/Plugins/LfpDisplayNode/LfpDisplayCanvas.cpp
Source/Plugins/LfpDisplayNode/LfpDisplayCanvas.h
+2
-0
2 additions, 0 deletions
Source/Plugins/LfpDisplayNode/LfpDisplayCanvas.h
with
17 additions
and
28 deletions
Source/Plugins/LfpDisplayNode/LfpDisplayCanvas.cpp
+
15
−
28
View file @
d2bc84a9
...
...
@@ -1861,6 +1861,13 @@ void LfpChannelDisplay::pxPaint()
for
(
int
i
=
ifrom
;
i
<
ito
;
i
+=
stepSize
)
// redraw only changed portion
{
int
zeromarker
=
getY
()
+
center
;
if
(
zeromarker
>
0
&
zeromarker
<
display
->
lfpChannelBitmap
.
getHeight
()){
if
(
bdLfpChannelBitmap
.
getPixelColour
(
i
,
zeromarker
)
==
Colour
(
0
,
0
,
0
)
)
{
// make sure we're not drawing over an existing plot from another channel
bdLfpChannelBitmap
.
setPixelColour
(
i
,
zeromarker
,
Colour
(
50
,
50
,
50
));
}
}
// draw event markers
int
rawEventState
=
canvas
->
getYCoord
(
canvas
->
getNumChannels
(),
i
);
// get last channel+1 in buffer (represents events)
...
...
@@ -1903,6 +1910,8 @@ void LfpChannelDisplay::pxPaint()
int
samplerange
=
to
-
from
;
if
(
drawMethod
)
// switched between 'supersampled' drawing and simple pixel wise drawing
{
// histogram based supersampling method
...
...
@@ -1913,14 +1922,13 @@ void LfpChannelDisplay::pxPaint()
{
//double a = (samplesThisPixel[sampleCountThisPixel]/range*channelHeightFloat)+getHeight()/2;
//g.setPixel(i,a);
float
localHist
[
samplerange
];
// simple histogram
//float localHist[samplerange]; // simple histogram
float
rangeHist
[
samplerange
];
// paired range histogram, same as plotting at higher res. and subsampling
for
(
int
k
=
0
;
k
<=
samplerange
;
k
++
)
{
localHist
[
k
]
=
0
;
//
localHist[k]=0;
rangeHist
[
k
]
=
0
;
}
...
...
@@ -1970,13 +1978,14 @@ void LfpChannelDisplay::pxPaint()
for
(
int
s
=
0
;
s
<
samplerange
;
s
++
)
// plot histogram one pixel per bin
{
float
a
=
(
15
*
rangeHist
[
s
])
/
(
sampleCountThisPixel
);
float
a
=
(
20
*
rangeHist
[
s
])
/
(
sampleCountThisPixel
);
if
(
a
>
1.0
f
)
{
a
=
1.0
f
;};
if
(
a
<
0.0
f
)
{
a
=
0.0
f
;};
Colour
gradedColor
=
lineColour
.
withMultipliedBrightness
(
2.0
f
).
interpolatedWith
(
lineColour
.
withMultipliedSaturation
(
0.7
f
).
withMultipliedBrightness
(
0.3
f
),
1
-
a
)
;
//Colour gradedColor = Colour(0,0,0).interpolatedWith(Colour(255,255,255),a);
//Colour gradedColor = Colour(0,255,0);
//g.setPixel(i,from+s);
int
ploty
=
from
+
s
+
getY
();
...
...
@@ -2013,19 +2022,7 @@ void LfpChannelDisplay::pxPaint()
if
(
jto
>=
display
->
lfpChannelBitmap
.
getHeight
())
{
jto
=
display
->
lfpChannelBitmap
.
getHeight
()
-
1
;};
//for (int j = 0; j < getHeight(); j++)
//{
// bdLfpChannelBitmap.setPixelColour(i,j,Colour(0,0,0).withAlpha(0.0f));
//}
//g.setColour(lineColour);
//g.setColour(lineColour.withMultipliedBrightness( 1+(((((float)(to-from)*range)/getHeight())-0.01)*2) )); // make spikes etc slightly brighter
//if ((to-from) < 200) // if there is too much vertical range in one pixel, don't draw the full line for speed reasons
//{
for
(
int
j
=
jfrom
;
j
<=
jto
;
j
+=
1
)
for
(
int
j
=
jfrom
;
j
<=
jto
;
j
+=
1
)
{
// g.setPixel(i,j);
...
...
@@ -2037,16 +2034,6 @@ void LfpChannelDisplay::pxPaint()
bdLfpChannelBitmap
.
setPixelColour
(
i
,
j
,
lineColour
);
}
//}
//else
//{
// g.setPixel(i,to);
// g.setPixel(i,from);
//}
//draw mean
//g.setColour(Colours::black);
//g.setPixel(i,m);
}
...
...
This diff is collapsed.
Click to expand it.
Source/Plugins/LfpDisplayNode/LfpDisplayCanvas.h
+
2
−
0
View file @
d2bc84a9
...
...
@@ -386,6 +386,8 @@ protected:
ChannelType
type
;
String
typeStr
;
};
...
...
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