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
a6a6ee63
Commit
a6a6ee63
authored
9 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Plain Diff
Merge branch 'oxford'
parents
c8ee10d1
3a8292c5
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
+28
-26
28 additions, 26 deletions
fsl/data/image.py
with
28 additions
and
26 deletions
fsl/data/image.py
+
28
−
26
View file @
a6a6ee63
...
...
@@ -707,47 +707,49 @@ def loadImage(filename):
In any case, a tuple is returned, consisting of the nibabel image object,
and the name of the file that it was loaded from (either the passed-in
file name, or the name of the temporary decompressed file).
.. note:: The decompressing logic has been disabled for the time being.
"""
realFilename
=
filename
mbytes
=
op
.
getsize
(
filename
)
/
1048576.0
#
realFilename = filename
#
mbytes = op.getsize(filename) / 1048576.0
# The mbytes limit is arbitrary
if
filename
.
endswith
(
'
.gz
'
)
and
mbytes
>
512
:
#
#
The mbytes limit is arbitrary
#
if filename.endswith('.gz') and mbytes > 512:
unzipped
,
filename
=
tempfile
.
mkstemp
(
suffix
=
'
.nii
'
)
#
unzipped, filename = tempfile.mkstemp(suffix='.nii')
unzipped
=
os
.
fdopen
(
unzipped
)
#
unzipped = os.fdopen(unzipped)
msg
=
fslstrings
.
messages
[
'
image.loadImage.decompress
'
]
msg
=
msg
.
format
(
op
.
basename
(
realFilename
),
mbytes
,
filename
)
#
msg = fslstrings.messages['image.loadImage.decompress']
#
msg = msg.format(op.basename(realFilename), mbytes, filename)
status
.
update
(
msg
,
None
)
#
status.update(msg, None)
gzip
=
[
'
gzip
'
,
'
-d
'
,
'
-c
'
,
realFilename
]
log
.
debug
(
'
Running {} > {}
'
.
format
(
'
'
.
join
(
gzip
),
filename
))
#
gzip = ['gzip', '-d', '-c', realFilename]
#
log.debug('Running {} > {}'.format(' '.join(gzip), filename))
# If the gzip call fails, revert to loading from the gzipped file
try
:
sp
.
call
(
gzip
,
stdout
=
unzipped
)
unzipped
.
close
()
#
# If the gzip call fails, revert to loading from the gzipped file
#
try:
#
sp.call(gzip, stdout=unzipped)
#
unzipped.close()
except
OSError
as
e
:
log
.
warn
(
'
gzip call failed ({}) - cannot memory
'
'
map file: {}
'
.
format
(
e
,
realFilename
),
exc_info
=
True
)
unzipped
.
close
()
os
.
remove
(
filename
)
filename
=
realFilename
#
except OSError as e:
#
log.warn('gzip call failed ({}) - cannot memory '
#
'map file: {}'.format(e, realFilename),
#
exc_info=True)
#
unzipped.close()
#
os.remove(filename)
#
filename = realFilename
log
.
debug
(
'
Loading image from {}
'
.
format
(
filename
))
import
nibabel
as
nib
if
mbytes
>
512
:
msg
=
fslstrings
.
messages
[
'
image.loadImage.largeFile
'
]
msg
=
msg
.
format
(
op
.
basename
(
filename
),
mbytes
)
status
.
update
(
msg
)
#
if mbytes > 512:
#
msg = fslstrings.messages['image.loadImage.largeFile']
#
msg = msg.format(op.basename(filename), mbytes)
#
status.update(msg)
image
=
nib
.
load
(
filename
)
...
...
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