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
a0862c6c
Commit
a0862c6c
authored
4 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
MNT: Numpy deprecation warnings
parent
a473baa7
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/mesh.py
+1
-1
1 addition, 1 deletion
fsl/data/mesh.py
fsl/transform/nonlinear.py
+4
-4
4 additions, 4 deletions
fsl/transform/nonlinear.py
with
5 additions
and
5 deletions
fsl/data/mesh.py
+
1
−
1
View file @
a0862c6c
...
@@ -573,7 +573,7 @@ class Mesh(notifier.Notifier, meta.Meta):
...
@@ -573,7 +573,7 @@ class Mesh(notifier.Notifier, meta.Meta):
# sort by ray. I'm Not sure if this is
# sort by ray. I'm Not sure if this is
# needed - does trimesh do it for us?
# needed - does trimesh do it for us?
rayIdxs
=
np
.
asarray
(
np
.
argsort
(
rays
)
,
np
.
int
)
rayIdxs
=
np
.
asarray
(
np
.
argsort
(
rays
))
locs
=
locs
[
rayIdxs
]
locs
=
locs
[
rayIdxs
]
tris
=
tris
[
rayIdxs
]
tris
=
tris
[
rayIdxs
]
...
...
This diff is collapsed.
Click to expand it.
fsl/transform/nonlinear.py
+
4
−
4
View file @
a0862c6c
...
@@ -280,7 +280,7 @@ class DeformationField(NonLinearTransform):
...
@@ -280,7 +280,7 @@ class DeformationField(NonLinearTransform):
# Mask out the coordinates
# Mask out the coordinates
# that are out of bounds of
# that are out of bounds of
# the deformation field
# the deformation field
voxels
=
np
.
round
(
voxels
).
astype
(
np
.
int
)
voxels
=
np
.
round
(
voxels
).
astype
(
np
.
int
32
)
voxmask
=
(
voxels
>=
[
0
,
0
,
0
])
&
(
voxels
<
self
.
shape
[:
3
])
voxmask
=
(
voxels
>=
[
0
,
0
,
0
])
&
(
voxels
<
self
.
shape
[:
3
])
voxmask
=
voxmask
.
all
(
axis
=
1
)
voxmask
=
voxmask
.
all
(
axis
=
1
)
voxels
=
voxels
[
voxmask
]
voxels
=
voxels
[
voxmask
]
...
@@ -508,9 +508,9 @@ class CoefficientField(NonLinearTransform):
...
@@ -508,9 +508,9 @@ class CoefficientField(NonLinearTransform):
u
=
np
.
remainder
(
i
,
1
)
u
=
np
.
remainder
(
i
,
1
)
v
=
np
.
remainder
(
j
,
1
)
v
=
np
.
remainder
(
j
,
1
)
w
=
np
.
remainder
(
k
,
1
)
w
=
np
.
remainder
(
k
,
1
)
i
=
np
.
floor
(
i
).
astype
(
np
.
int
)
i
=
np
.
floor
(
i
).
astype
(
np
.
int
32
)
j
=
np
.
floor
(
j
).
astype
(
np
.
int
)
j
=
np
.
floor
(
j
).
astype
(
np
.
int
32
)
k
=
np
.
floor
(
k
).
astype
(
np
.
int
)
k
=
np
.
floor
(
k
).
astype
(
np
.
int
32
)
disps
=
np
.
zeros
(
coords
.
shape
)
disps
=
np
.
zeros
(
coords
.
shape
)
...
...
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