Skip to content

Commit

Permalink
Fixing outdated function
Browse files Browse the repository at this point in the history
  • Loading branch information
dbouget committed Feb 1, 2024
1 parent 446bebe commit 470313f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def __run(self, dense_parameters=None, cat_parameters=None) -> None:
:return: Nothing, the appropriate files are saved on disk directly
"""
atlas_ni = nib.load(SharedResources.getInstance().mni_atlas_filepath_T1)
atlas = atlas_ni.fget_data()[:]
atlas = atlas_ni.get_fdata()[:]
heatmap = np.zeros(atlas.shape)
heatmap_centroids = np.zeros(atlas.shape)

Expand Down

0 comments on commit 470313f

Please sign in to comment.