Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fslpy
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Contributor analytics
CI/CD 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
FSL
fslpy
Commits
41cc0bd5
Commit
41cc0bd5
authored
8 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
Bugfix in sameSpace - broke when comparing 3D with 4D
parent
fb6c5c0b
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
+3
-3
3 additions, 3 deletions
fsl/data/image.py
with
3 additions
and
3 deletions
fsl/data/image.py
+
3
−
3
View file @
41cc0bd5
...
...
@@ -536,9 +536,9 @@ class Nifti(notifier.Notifier):
same space as this image.
"""
return
np
.
all
(
np
.
isclose
(
self
.
__shape
[:
3
],
other
.
__shape
[:
3
]))
and
\
np
.
all
(
np
.
isclose
(
self
.
__pixdim
,
other
.
__pixdim
))
and
\
other
.
__shape
[:
3
]))
and
\
np
.
all
(
np
.
isclose
(
self
.
__pixdim
[:
3
]
,
other
.
__pixdim
[:
3
]))
and
\
np
.
all
(
np
.
isclose
(
self
.
__voxToWorldMat
,
other
.
__voxToWorldMat
))
...
...
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