Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions spm_funcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,13 @@ def get_spm_globals(fname):
spm_vals : array
SPM global metric for each 3D volume in the 4D image.
"""
# +++your code here+++
# return
# Load the image given by "fname"
img = nib.load(fname)
# Get the data
data = img.get_fdata()
# Calculate the SPM global value for each volume
spm_vals = np.array([spm_global(data[...,i]) for i in range(data.shape[-1])])
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice!

return spm_vals


def main():
Expand Down