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
6a70a75b
Commit
6a70a75b
authored
6 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
RF: Minor refactorings
parent
8aeb0555
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
fsl/data/image.py
+13
-9
13 additions, 9 deletions
fsl/data/image.py
with
13 additions
and
9 deletions
fsl/data/image.py
+
13
−
9
View file @
6a70a75b
...
...
@@ -245,16 +245,18 @@ class Nifti(notifier.Notifier, meta.Meta):
header
=
header
origShape
,
shape
,
pixdim
=
Nifti
.
determineShape
(
header
)
voxToWorldMat
=
Nifti
.
determineAffine
(
header
)
affines
,
isneuro
=
Nifti
.
generateAffines
(
voxToWorldMat
,
shape
,
pixdim
)
self
.
header
=
header
self
.
__shape
=
shape
self
.
__origShape
=
origShape
self
.
__pixdim
=
pixdim
self
.
__intent
=
header
.
get
(
'
intent_code
'
,
constants
.
NIFTI_INTENT_NONE
)
voxToWorldMat
=
Nifti
.
determineAffine
(
header
)
affines
,
isneuro
=
Nifti
.
generateAffines
(
voxToWorldMat
,
shape
,
pixdim
)
self
.
header
=
header
self
.
__shape
=
shape
self
.
__origShape
=
origShape
self
.
__pixdim
=
pixdim
self
.
__intent
=
header
.
get
(
'
intent_code
'
,
constants
.
NIFTI_INTENT_NONE
)
self
.
__affines
=
affines
self
.
__isNeurological
=
isneuro
...
...
@@ -1206,7 +1208,9 @@ class Image(Nifti):
# We save the image out to a temp file,
# then close the old image, move the
# temp file to the real destination,
# then re-open the file.
# then re-open the file. This is done
# to ensure that all references to the
# old file are destroyed.
tmphd
,
tmpfname
=
tempfile
.
mkstemp
(
suffix
=
getExt
(
filename
))
os
.
close
(
tmphd
)
...
...
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