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
Package registry
Model registry
Operate
Environments
Terraform modules
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
Evan Edmond
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
No related tags found
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__)
...
@@ -23,18 +23,20 @@ log = logging.getLogger(__name__)
# seem to handle wildcards with
# seem to handle wildcards with
# multiple suffixes (e.g. '.nii.gz'),
# multiple suffixes (e.g. '.nii.gz'),
# so i'm just providing '*.gz'for now
# 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
"""
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
if if the ``allowedExts`` parameter is not passed to any of the functions in
this module.
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
'
,
'
ANALYZE75 images
'
,
'
NIFTI1/ANALYZE75 headers
'
,
'
NIFTI1/ANALYZE75 headers
'
,
'
Compressed images
'
,
'
Compressed NIFTI1/ANALYZE75 images
'
'
Compressed NIFTI1 images
'
,
'
Compressed images
'
]
'
Compressed NIFTI1/ANALYZE75 images
'
]
"""
Descriptions for each of the extensions in :data:`ALLOWED_EXTENSIONS`.
"""
"""
Descriptions for each of the extensions in :data:`ALLOWED_EXTENSIONS`.
"""
...
@@ -56,14 +58,9 @@ def makeWildcard(allowedExts=None):
...
@@ -56,14 +58,9 @@ def makeWildcard(allowedExts=None):
else
:
else
:
descs
=
allowedExts
descs
=
allowedExts
exts
=
[
'
*{}
'
.
format
(
ext
)
for
ext
in
allowedExts
]
exts
=
[
'
*{}
'
.
format
(
ext
)
for
ext
in
allowedExts
]
allDesc
=
'
All supported files
'
allExts
=
'
;
'
.
join
(
exts
)
wcParts
=
[
'
|
'
.
join
((
desc
,
ext
))
for
(
desc
,
ext
)
in
zip
(
descs
,
exts
)]
wcParts
=
[
'
|
'
.
join
((
desc
,
ext
))
for
(
desc
,
ext
)
in
zip
(
descs
,
exts
)]
wcParts
=
[
'
|
'
.
join
((
allDesc
,
allExts
))]
+
wcParts
return
'
|
'
.
join
(
wcParts
)
return
'
|
'
.
join
(
wcParts
)
...
@@ -284,7 +281,7 @@ def saveImage(image, imageList=None, fromDir=None):
...
@@ -284,7 +281,7 @@ def saveImage(image, imageList=None, fromDir=None):
lastDir
=
getattr
(
saveImage
,
'
lastDir
'
,
None
)
lastDir
=
getattr
(
saveImage
,
'
lastDir
'
,
None
)
if
lastDir
is
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
)
else
:
lastDir
=
op
.
dirname
(
image
.
imageFile
)
# TODO make image.name safe (spaces to
# TODO make image.name safe (spaces to
...
@@ -331,6 +328,9 @@ def saveImage(image, imageList=None, fromDir=None):
...
@@ -331,6 +328,9 @@ def saveImage(image, imageList=None, fromDir=None):
# are identical
# are identical
pass
pass
# TODO handle error
# this is just a normal image
# this is just a normal image
# which has been loaded from
# which has been loaded from
# a file, or an in-memory image
# a file, or an in-memory image
...
@@ -381,7 +381,7 @@ def addImages(imageList, fromDir=None, addToEnd=True):
...
@@ -381,7 +381,7 @@ def addImages(imageList, fromDir=None, addToEnd=True):
if
len
(
imageList
)
>
0
and
imageList
[
-
1
].
imageFile
is
not
None
:
if
len
(
imageList
)
>
0
and
imageList
[
-
1
].
imageFile
is
not
None
:
lastDir
=
op
.
dirname
(
imageList
[
-
1
].
imageFile
)
lastDir
=
op
.
dirname
(
imageList
[
-
1
].
imageFile
)
else
:
else
:
lastDir
=
os
.
cwd
()
lastDir
=
os
.
get
cwd
()
saveLastDir
=
False
saveLastDir
=
False
if
fromDir
is
None
:
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):
...
@@ -175,7 +175,7 @@ class GLImage(object):
# Another GLImage object may have
# Another GLImage object may have
# already deleted the image texture
# already deleted the image texture
try
:
try
:
imageTexture
=
self
.
image
.
delAttribute
(
'
gl
ImageTexture
'
)
imageTexture
=
self
.
image
.
delAttribute
(
'
GL
ImageTexture
'
)
gl
.
glDeleteTextures
(
1
,
imageTexture
)
gl
.
glDeleteTextures
(
1
,
imageTexture
)
except
KeyError
:
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