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
ecbb42bd
Commit
ecbb42bd
authored
5 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
BF: Transform->affine changes. Make sure we don't generate an empty affine for
coefficient fields
parent
c20e7c85
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
fsl/data/image.py
+3
-3
3 additions, 3 deletions
fsl/data/image.py
fsl/data/mghimage.py
+1
-1
1 addition, 1 deletion
fsl/data/mghimage.py
with
4 additions
and
4 deletions
fsl/data/image.py
+
3
−
3
View file @
ecbb42bd
...
@@ -337,9 +337,9 @@ class Nifti(notifier.Notifier, meta.Meta):
...
@@ -337,9 +337,9 @@ class Nifti(notifier.Notifier, meta.Meta):
# get the shape/size of the coefficient
# get the shape/size of the coefficient
# field about right
# field about right
knotpix
=
header
.
get_zooms
()[:
3
]
knotpix
=
header
.
get_zooms
()[:
3
]
refpix
=
(
header
.
get
(
'
intent_p1
'
,
1
),
refpix
=
(
header
.
get
(
'
intent_p1
'
,
1
)
or
1
,
header
.
get
(
'
intent_p2
'
,
1
),
header
.
get
(
'
intent_p2
'
,
1
)
or
1
,
header
.
get
(
'
intent_p3
'
,
1
))
header
.
get
(
'
intent_p3
'
,
1
)
or
1
)
voxToWorldMat
=
affine
.
concat
(
voxToWorldMat
=
affine
.
concat
(
affine
.
scaleOffsetXform
(
refpix
,
0
),
affine
.
scaleOffsetXform
(
refpix
,
0
),
affine
.
scaleOffsetXform
(
knotpix
,
0
))
affine
.
scaleOffsetXform
(
knotpix
,
0
))
...
...
This diff is collapsed.
Click to expand it.
fsl/data/mghimage.py
+
1
−
1
View file @
ecbb42bd
...
@@ -69,7 +69,7 @@ class MGHImage(fslimage.Image):
...
@@ -69,7 +69,7 @@ class MGHImage(fslimage.Image):
self
.
__voxToSurfMat
=
vox2surf
self
.
__voxToSurfMat
=
vox2surf
self
.
__surfToVoxMat
=
affine
.
invert
(
vox2surf
)
self
.
__surfToVoxMat
=
affine
.
invert
(
vox2surf
)
self
.
__surfToWorldMat
=
affine
.
concat
(
affine
,
self
.
__surfToVoxMat
)
self
.
__surfToWorldMat
=
affine
.
concat
(
xform
,
self
.
__surfToVoxMat
)
self
.
__worldToSurfMat
=
affine
.
invert
(
self
.
__surfToWorldMat
)
self
.
__worldToSurfMat
=
affine
.
invert
(
self
.
__surfToWorldMat
)
...
...
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