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
265c15c0
Commit
265c15c0
authored
9 years ago
by
Jakob Voigts
Browse files
Options
Downloads
Patches
Plain Diff
bugfix
used to miss one sample/pixel, leaving small gaps occasionally
parent
c447f436
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Source/Plugins/LfpDisplayNode/LfpDisplayCanvas.cpp
+6
-7
6 additions, 7 deletions
Source/Plugins/LfpDisplayNode/LfpDisplayCanvas.cpp
with
6 additions
and
7 deletions
Source/Plugins/LfpDisplayNode/LfpDisplayCanvas.cpp
+
6
−
7
View file @
265c15c0
...
...
@@ -799,14 +799,14 @@ void LfpDisplayCanvas::updateScreenBuffer()
alpha
*
gain
);
// gain
// same thing again, but this time add the min,mean, and max of all samples in current pixel
float
sample_min
=
1000000
;
float
sample_max
=
-
1000000
;
float
sample_min
=
1000000
0
;
float
sample_max
=
-
1000000
0
;
float
sample_mean
=
0
;
int
nextpix
=
(
dbi
+
(
int
)
ratio
)
%
displayBufferSize
;
// position to next pixels index
int
c
=
0
;
for
(
int
j
=
dbi
;
j
<
nextpix
;
j
++
)
for
(
int
j
=
dbi
;
j
<
=
nextpix
;
j
++
)
{
float
sample_current
=
displayBuffer
->
getSample
(
channel
,
j
);
sample_mean
=
sample_mean
+
sample_current
;
...
...
@@ -829,7 +829,7 @@ void LfpDisplayCanvas::updateScreenBuffer()
if
(
channel
<
nChans
)
// we're looping over one 'extra' channel for events above, so make sure not to loop over that one here
{
c
=
0
;
for
(
int
j
=
dbi
;
j
<
nextpix
&
c
<
MAX_N_SAMP_PER_PIXEL
;
j
++
)
for
(
int
j
=
dbi
;
j
<
=
nextpix
&
c
<
MAX_N_SAMP_PER_PIXEL
;
j
++
)
{
float
sample_current
=
displayBuffer
->
getSample
(
channel
,
j
);
samplesPerPixel
[
channel
][
sbi
][
c
]
=
sample_current
;
...
...
@@ -1976,9 +1976,8 @@ void LfpChannelDisplay::paint(Graphics& g)
}
else
{
// simple per-pixel min-max drawing
// pixel wise line plot has no anti-aliasing, but runs much faster
else
//drawmethod
{
// simple per-pixel min-max drawing, has no anti-aliasing, but runs faster
g
.
setColour
(
lineColour
);
//g.setColour(lineColour.withMultipliedBrightness( 1+(((((float)(to-from)*range)/getHeight())-0.01)*2) )); // make spikes etc slightly brighter
...
...
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