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
792c5a74
Commit
792c5a74
authored
10 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
Couple of little tweaks - testing on jalapeno (remote server), so there
may be a few more miniscule commits
parent
1c813b61
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
fsl/data/imageio.py
+14
-14
14 additions, 14 deletions
fsl/data/imageio.py
fsl/fslview/gl/glimage.py
+1
-1
1 addition, 1 deletion
fsl/fslview/gl/glimage.py
with
15 additions
and
15 deletions
fsl/data/imageio.py
+
14
−
14
View file @
792c5a74
...
...
@@ -23,18 +23,20 @@ log = logging.getLogger(__name__)
# seem to handle wildcards with
# multiple suffixes (e.g. '.nii.gz'),
# so i'm just providing '*.gz'for now
ALLOWED_EXTENSIONS
=
[
'
.nii
'
,
'
.img
'
,
'
.hdr
'
,
'
.
gz
'
,
'
.nii
.gz
'
,
'
.
img.
gz
'
]
ALLOWED_EXTENSIONS
=
[
'
.nii.gz
'
,
'
.nii
'
,
'
.img
'
,
'
.hdr
'
,
'
.
img
.gz
'
,
'
.gz
'
]
"""
The file extensions which we understand. This list is used as the default
if if the ``allowedExts`` parameter is not passed to any of the functions in
this module.
"""
EXTENSION_DESCRIPTIONS
=
[
'
NIFTI1 images
'
,
ALLOWED_EXTENSIONS
=
[
'
;
'
.
join
(
ALLOWED_EXTENSIONS
)]
+
ALLOWED_EXTENSIONS
EXTENSION_DESCRIPTIONS
=
[
'
All supported files
'
'
Compressed NIFTI1 images
'
,
'
NIFTI1 images
'
,
'
ANALYZE75 images
'
,
'
NIFTI1/ANALYZE75 headers
'
,
'
Compressed images
'
,
'
Compressed NIFTI1 images
'
,
'
Compressed NIFTI1/ANALYZE75 images
'
]
'
Compressed NIFTI1/ANALYZE75 images
'
'
Compressed images
'
]
"""
Descriptions for each of the extensions in :data:`ALLOWED_EXTENSIONS`.
"""
...
...
@@ -56,14 +58,9 @@ def makeWildcard(allowedExts=None):
else
:
descs
=
allowedExts
exts
=
[
'
*{}
'
.
format
(
ext
)
for
ext
in
allowedExts
]
allDesc
=
'
All supported files
'
allExts
=
'
;
'
.
join
(
exts
)
exts
=
[
'
*{}
'
.
format
(
ext
)
for
ext
in
allowedExts
]
wcParts
=
[
'
|
'
.
join
((
desc
,
ext
))
for
(
desc
,
ext
)
in
zip
(
descs
,
exts
)]
wcParts
=
[
'
|
'
.
join
((
allDesc
,
allExts
))]
+
wcParts
return
'
|
'
.
join
(
wcParts
)
...
...
@@ -284,7 +281,7 @@ def saveImage(image, imageList=None, fromDir=None):
lastDir
=
getattr
(
saveImage
,
'
lastDir
'
,
None
)
if
lastDir
is
None
:
if
image
.
imageFile
is
None
:
lastDir
=
os
.
cwd
()
if
image
.
imageFile
is
None
:
lastDir
=
os
.
get
cwd
()
else
:
lastDir
=
op
.
dirname
(
image
.
imageFile
)
# TODO make image.name safe (spaces to
...
...
@@ -331,6 +328,9 @@ def saveImage(image, imageList=None, fromDir=None):
# are identical
pass
# TODO handle error
# this is just a normal image
# which has been loaded from
# a file, or an in-memory image
...
...
@@ -381,7 +381,7 @@ def addImages(imageList, fromDir=None, addToEnd=True):
if
len
(
imageList
)
>
0
and
imageList
[
-
1
].
imageFile
is
not
None
:
lastDir
=
op
.
dirname
(
imageList
[
-
1
].
imageFile
)
else
:
lastDir
=
os
.
cwd
()
lastDir
=
os
.
get
cwd
()
saveLastDir
=
False
if
fromDir
is
None
:
...
...
This diff is collapsed.
Click to expand it.
fsl/fslview/gl/glimage.py
+
1
−
1
View file @
792c5a74
...
...
@@ -175,7 +175,7 @@ class GLImage(object):
# Another GLImage object may have
# already deleted the image texture
try
:
imageTexture
=
self
.
image
.
delAttribute
(
'
gl
ImageTexture
'
)
imageTexture
=
self
.
image
.
delAttribute
(
'
GL
ImageTexture
'
)
gl
.
glDeleteTextures
(
1
,
imageTexture
)
except
KeyError
:
...
...
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