Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Daniel Scheffler
arosics
Commits
42c23d81
Commit
42c23d81
authored
Sep 29, 2021
by
Daniel Scheffler
Browse files
Fixed 'too many values to unpack' exception in COREG_LOCAL.view_CoRegPoints().
Signed-off-by:
Daniel Scheffler
<
danschef@gfz-potsdam.de
>
parent
dfe83982
Changes
1
Hide whitespace changes
Inline
Side-by-side
arosics/CoReg_local.py
View file @
42c23d81
...
...
@@ -543,7 +543,7 @@ class COREG_LOCAL(object):
# make sure the output figure has a reasonable size, also if figsize is not given
if
not
figsize
:
r
,
c
=
backgroundIm
.
shape
r
,
c
=
backgroundIm
.
shape
[:
2
]
figsize
=
(
8
,
r
/
c
*
8
)
if
r
>
c
else
(
c
/
r
*
8
,
8
)
# apply figsize multiplier
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment