Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fslpy
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
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
FSL
fslpy
Commits
ca3becf1
Commit
ca3becf1
authored
7 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
Silly edge case fix in image wrapper - for images where all dimensions have
length 1
parent
875bab98
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
fsl/data/imagewrapper.py
+5
-0
5 additions, 0 deletions
fsl/data/imagewrapper.py
with
5 additions
and
0 deletions
fsl/data/imagewrapper.py
+
5
−
0
View file @
ca3becf1
...
...
@@ -187,6 +187,11 @@ class ImageWrapper(notifier.Notifier):
if
d
==
1
:
self
.
__numRealDims
-=
1
else
:
break
# Degenerate case - if every
# dimension has length 1
if
self
.
__numRealDims
==
0
:
self
.
__numRealDims
=
len
(
image
.
shape
)
# And save the number of
# 'padding' dimensions too.
self
.
__numPadDims
=
len
(
image
.
shape
)
-
self
.
__numRealDims
...
...
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