Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fslpy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
Michiel Cottaar
fslpy
Commits
62c51e9e
Commit
62c51e9e
authored
6 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Plain Diff
Merge branch 'bf/dicom_mmap' into 'master'
Bf/dicom mmap See merge request fsl/fslpy!102
parents
5bab6952
39f41562
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.rst
+13
-6
13 additions, 6 deletions
CHANGELOG.rst
fsl/data/dicom.py
+8
-4
8 additions, 4 deletions
fsl/data/dicom.py
with
21 additions
and
10 deletions
CHANGELOG.rst
+
13
−
6
View file @
62c51e9e
...
@@ -27,19 +27,26 @@ Changed
...
@@ -27,19 +27,26 @@ Changed
vertex data.
vertex data.
Removed
^^^^^^^
* Many deprecated items removed.
1.13.3 (Friday February 8th 2019)
---------------------------------
Fixed
Fixed
^^^^^
^^^^^
* Fixed an issue with the `.dicom.loadSeries` using memory-mapping for
image files that would subsequently be deleted.
* Fixed an issue in the :class:`.GiftiMesh` class, where
* Fixed an issue in the :class:`.GiftiMesh` class, where
``numpy``/``nibabel`` was returning read-only index arrays.
``numpy``/``nibabel`` was returning read-only index arrays.
Removed
^^^^^^^
* Many deprecated items removed.
1.13.2 (Friday November 30th 2018)
1.13.2 (Friday November 30th 2018)
----------------------------------
----------------------------------
...
...
This diff is collapsed.
Click to expand it.
fsl/data/dicom.py
+
8
−
4
View file @
62c51e9e
...
@@ -203,9 +203,13 @@ def loadSeries(series):
...
@@ -203,9 +203,13 @@ def loadSeries(series):
sp
.
call
(
cmd
.
split
(),
stdout
=
devnull
,
stderr
=
devnull
)
sp
.
call
(
cmd
.
split
(),
stdout
=
devnull
,
stderr
=
devnull
)
files
=
glob
.
glob
(
op
.
join
(
td
,
'
{}*.nii
'
.
format
(
snum
)))
files
=
glob
.
glob
(
op
.
join
(
td
,
'
{}*.nii
'
.
format
(
snum
)))
images
=
[
nib
.
load
(
f
)
for
f
in
files
]
images
=
[
nib
.
load
(
f
,
mmap
=
False
)
for
f
in
files
]
# Force-load images into memory
# copy images so nibabel no longer
[
i
.
get_data
()
for
i
in
images
]
# refs to the files (as they will
# be deleted), and use get_data()
# to force-load the image data.
images
=
[
nib
.
Nifti1Image
(
i
.
get_data
(),
None
,
i
.
header
)
for
i
in
images
]
return
[
DicomImage
(
i
,
series
,
dcmdir
,
name
=
desc
)
for
i
in
images
]
return
[
DicomImage
(
i
,
series
,
dcmdir
,
name
=
desc
)
for
i
in
images
]
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