Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update spm_funcs.py #11

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
8 changes: 6 additions & 2 deletions spm_funcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,12 @@ def get_spm_globals(fname):
spm_vals : array
SPM global metric for each 3D volume in the 4D image.
"""
# +++your code here+++
# return
img = nib.load(fname) #- Load the image given by "fname".
data = img.get_fdata() #- Get the data
spm_vals = [] #- Calculate the SPM global value for each volume.
for i in range(data.shape[-1]):
spm_vals.append(spm_global(data[...,i]))
return spm_vals # Return the result.


def main():
Expand Down