Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fslpy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
Michiel Cottaar
fslpy
Commits
2eb4e3bf
Commit
2eb4e3bf
authored
7 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
New convenience method Image.resample
parent
d35cad7f
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
fsl/data/image.py
+28
-0
28 additions, 0 deletions
fsl/data/image.py
with
28 additions
and
0 deletions
fsl/data/image.py
+
28
−
0
View file @
2eb4e3bf
...
@@ -40,6 +40,7 @@ import logging
...
@@ -40,6 +40,7 @@ import logging
import
six
import
six
import
deprecation
import
deprecation
import
numpy
as
np
import
numpy
as
np
import
scipy.ndimage
as
ndimage
import
nibabel
as
nib
import
nibabel
as
nib
import
nibabel.fileslice
as
fileslice
import
nibabel.fileslice
as
fileslice
...
@@ -1115,6 +1116,33 @@ class Image(Nifti):
...
@@ -1115,6 +1116,33 @@ class Image(Nifti):
self
.
notify
(
topic
=
'
saveState
'
)
self
.
notify
(
topic
=
'
saveState
'
)
def
resample
(
self
,
shape
,
sliceobj
=
None
,
**
kwargs
):
"""
Returns a copy of the data in this ``Image``, resampled to the
specified ``shape``.
:arg shape: Desired shape
:arg sliceobj: Slice into this ``Image``. If ``None``, the whole
image is resampled, and it is assumed that it has the
same number of dimensions as ``shape``.
All other arguments are passed through to the ``scipy.ndimage.zoom``
function.
"""
if
sliceobj
is
None
:
sliceobj
=
slice
(
None
)
ndims
=
len
(
shape
)
data
=
self
[
sliceobj
]
if
tuple
(
data
.
shape
)
!=
tuple
(
shape
):
zooms
=
[
float
(
shape
[
i
])
/
data
.
shape
[
i
]
for
i
in
range
(
ndims
)]
data
=
ndimage
.
zoom
(
data
,
zooms
,
**
kwargs
)
return
data
def
__getitem__
(
self
,
sliceobj
):
def
__getitem__
(
self
,
sliceobj
):
"""
Access the image data with the specified ``sliceobj``.
"""
Access the image data with the specified ``sliceobj``.
...
...
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