Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
EO Time Series Viewer
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Insights
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
Benjamin Jakimow
EO Time Series Viewer
Commits
1b17bc6a
Commit
1b17bc6a
authored
11 years ago
by
Luke Campagnola
Browse files
Options
Downloads
Patches
Plain Diff
export uses padding to prevent edge effects
parent
e864043e
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
pyqtgraph/opengl/GLViewWidget.py
+9
-8
9 additions, 8 deletions
pyqtgraph/opengl/GLViewWidget.py
with
9 additions
and
8 deletions
pyqtgraph/opengl/GLViewWidget.py
+
9
−
8
View file @
1b17bc6a
...
...
@@ -346,7 +346,7 @@ class GLViewWidget(QtOpenGL.QGLWidget):
return
img
def
renderToArray
(
self
,
size
,
format
=
GL_BGRA
,
type
=
GL_UNSIGNED_BYTE
):
def
renderToArray
(
self
,
size
,
format
=
GL_BGRA
,
type
=
GL_UNSIGNED_BYTE
,
textureSize
=
1024
,
padding
=
256
):
w
,
h
=
map
(
int
,
size
)
self
.
makeCurrent
()
...
...
@@ -360,7 +360,7 @@ class GLViewWidget(QtOpenGL.QGLWidget):
glEnable
(
GL_TEXTURE_2D
)
tex
=
glGenTextures
(
1
)
glBindTexture
(
GL_TEXTURE_2D
,
tex
)
texwidth
=
512
texwidth
=
textureSize
data
=
np
.
zeros
((
texwidth
,
texwidth
,
4
),
dtype
=
np
.
ubyte
)
## Test texture dimensions first
...
...
@@ -372,22 +372,23 @@ class GLViewWidget(QtOpenGL.QGLWidget):
self
.
opts
[
'
viewport
'
]
=
(
0
,
0
,
w
,
h
)
# viewport is the complete image; this ensures that paintGL(region=...)
# is interpreted correctly.
for
x
in
range
(
0
,
w
,
texwidth
):
for
y
in
range
(
0
,
h
,
texwidth
):
x2
=
min
(
x
+
texwidth
,
w
)
y2
=
min
(
y
+
texwidth
,
h
)
p2
=
2
*
padding
for
x
in
range
(
-
padding
,
w
-
padding
,
texwidth
-
p2
):
for
y
in
range
(
-
padding
,
h
-
padding
,
texwidth
-
p2
):
x2
=
min
(
x
+
texwidth
,
w
+
padding
)
y2
=
min
(
y
+
texwidth
,
h
+
padding
)
w2
=
x2
-
x
h2
=
y2
-
y
## render to texture
glfbo
.
glFramebufferTexture2D
(
glfbo
.
GL_FRAMEBUFFER
,
glfbo
.
GL_COLOR_ATTACHMENT0
,
GL_TEXTURE_2D
,
tex
,
0
)
self
.
paintGL
(
region
=
(
x
,
h
-
y
-
h2
,
w2
,
h2
),
viewport
=
(
0
,
0
,
w2
,
h2
))
# only render sub-region
## read texture back to array
data
=
glGetTexImage
(
GL_TEXTURE_2D
,
0
,
format
,
type
)
data
=
np
.
fromstring
(
data
,
dtype
=
np
.
ubyte
).
reshape
(
texwidth
,
texwidth
,
4
).
transpose
(
1
,
0
,
2
)[:,
::
-
1
]
output
[
x
:
x2
,
y
:
y2
]
=
data
[:
w2
,
-
h2
:
]
output
[
x
+
padding
:
x2
-
padding
,
y
+
padding
:
y2
-
padding
]
=
data
[
padding
:
w2
-
padding
,
-
(
h2
-
padding
):
-
padding
]
finally
:
self
.
opts
[
'
viewport
'
]
=
None
...
...
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