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
f2259781
Commit
f2259781
authored
8 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
calcExpansion was not handling empty coverage.
parent
c60cda17
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
+9
-4
9 additions, 4 deletions
fsl/data/imagewrapper.py
with
9 additions
and
4 deletions
fsl/data/imagewrapper.py
+
9
−
4
View file @
f2259781
...
@@ -133,7 +133,7 @@ class ImageWrapper(notifier.Notifier):
...
@@ -133,7 +133,7 @@ class ImageWrapper(notifier.Notifier):
# - third dimension: slice/volume index
# - third dimension: slice/volume index
self
.
__coverage
=
np
.
zeros
(
self
.
__coverage
=
np
.
zeros
(
(
2
,
self
.
__numRealDims
-
1
,
image
.
shape
[
self
.
__numRealDims
-
1
]),
(
2
,
self
.
__numRealDims
-
1
,
image
.
shape
[
self
.
__numRealDims
-
1
]),
dtype
=
np
.
uin
t32
)
dtype
=
np
.
floa
t32
)
self
.
__coverage
[:]
=
np
.
nan
self
.
__coverage
[:]
=
np
.
nan
...
@@ -429,6 +429,13 @@ def calcExpansion(slices, coverage):
...
@@ -429,6 +429,13 @@ def calcExpansion(slices, coverage):
for
vol
in
range
(
lowVol
,
highVol
):
for
vol
in
range
(
lowVol
,
highVol
):
# No coverage of this volume -
# we need the whole slice.
if
np
.
any
(
np
.
isnan
(
coverage
[:,
:,
vol
])):
volumes
.
append
(
vol
)
expansions
.
append
([(
s
[
0
],
s
[
1
])
for
s
in
slices
[:
numDims
]])
continue
# First we'll figure out the index
# First we'll figure out the index
# range for each dimension that
# range for each dimension that
# needs to be added to the coverage.
# needs to be added to the coverage.
...
@@ -437,14 +444,12 @@ def calcExpansion(slices, coverage):
...
@@ -437,14 +444,12 @@ def calcExpansion(slices, coverage):
# containing:
# containing:
# (dimension, lowIndex, highIndex)
# (dimension, lowIndex, highIndex)
reqRanges
=
[]
reqRanges
=
[]
for
dim
in
range
(
numDims
):
for
dim
in
range
(
numDims
):
lowCover
,
highCover
=
coverage
[:,
dim
,
vol
]
lowCover
,
highCover
=
coverage
[:,
dim
,
vol
]
lowSlice
,
highSlice
=
slices
[
dim
]
lowSlice
,
highSlice
=
slices
[
dim
]
if
np
.
isnan
(
lowCover
):
lowCover
=
lowSlice
if
np
.
isnan
(
highCover
):
highCover
=
highSlice
# The slice covers a region
# The slice covers a region
# below the current coverage
# below the current coverage
if
lowCover
-
lowSlice
>
0
:
if
lowCover
-
lowSlice
>
0
:
...
...
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