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
94f3ebf0
Commit
94f3ebf0
authored
5 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
BF: Small fixes
parent
366b0d2d
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/transform/x5.py
+4
-3
4 additions, 3 deletions
fsl/transform/x5.py
with
4 additions
and
3 deletions
fsl/transform/x5.py
+
4
−
3
View file @
94f3ebf0
...
@@ -637,14 +637,15 @@ def _readDisplacementField(group):
...
@@ -637,14 +637,15 @@ def _readDisplacementField(group):
src
,
ref
,
pre
,
post
,
init
,
srcSpace
,
refSpace
=
_readNonLinearCommon
(
group
)
src
,
ref
,
pre
,
post
,
init
,
srcSpace
,
refSpace
=
_readNonLinearCommon
(
group
)
field
=
np
.
array
(
group
[
'
Transform
'
])
field
=
np
.
array
(
group
[
'
Transform
'
])
dtype
=
group
[
'
Representation
'
]
dtype
=
group
.
attrs
[
'
Representation
'
]
field
=
nonlinear
.
DisplacementField
(
field
,
field
=
nonlinear
.
DisplacementField
(
field
,
src
=
src
,
src
=
src
,
ref
=
ref
,
ref
=
ref
,
srcSpace
=
srcSpace
,
srcSpace
=
srcSpace
,
refSpace
=
refSpace
,
refSpace
=
refSpace
,
dispType
=
dtype
,
dispType
=
dtype
,
srcToRefMat
=
init
)
srcToRefMat
=
init
,
xform
=
ref
.
voxToWorldMat
)
return
field
return
field
...
@@ -660,7 +661,7 @@ def _writeDisplacementField(group, field):
...
@@ -660,7 +661,7 @@ def _writeDisplacementField(group, field):
group
.
attrs
[
'
SubType
'
]
=
'
displacement
'
group
.
attrs
[
'
SubType
'
]
=
'
displacement
'
group
.
attrs
[
'
Representation
'
]
=
field
.
displacementType
group
.
attrs
[
'
Representation
'
]
=
field
.
displacementType
xform
=
np
.
field
.
data
.
astype
(
np
.
float64
)
xform
=
field
.
data
.
astype
(
np
.
float64
)
group
.
create_dataset
(
'
Transform
'
,
data
=
xform
)
group
.
create_dataset
(
'
Transform
'
,
data
=
xform
)
...
...
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