Skip to content
Snippets Groups Projects
Commit aa793030 authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

Image.dtype method uses imagewrapper instead of nibImage.dataobj, as the image

might be in memory.
parent 5c29c315
No related branches found
No related tags found
No related merge requests found
......@@ -1003,7 +1003,7 @@ class Image(Nifti):
# Get the data type from the
# first voxel in the image
coords = [0] * len(self.__nibImage.shape)
return self.__nibImage.dataobj[tuple(coords)].dtype
return self[tuple(coords)].dtype
@Nifti.voxToWorldMat.setter
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment