Skip to content
Snippets Groups Projects
Commit 792c5a74 authored by Paul McCarthy's avatar Paul McCarthy
Browse files

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
...@@ -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.getcwd()
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.getcwd()
saveLastDir = False saveLastDir = False
if fromDir is None: if fromDir is None:
......
...@@ -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('glImageTexture') imageTexture = self.image.delAttribute('GLImageTexture')
gl.glDeleteTextures(1, imageTexture) gl.glDeleteTextures(1, imageTexture)
except KeyError: except KeyError:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment