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

Various bugfixes to AtlasPanel - it now supports reference images.

parent ee2ba4c6
No related branches found
No related tags found
No related merge requests found
...@@ -297,6 +297,6 @@ class ProbabilisticAtlas(Atlas): ...@@ -297,6 +297,6 @@ class ProbabilisticAtlas(Atlas):
voxelLoc[0] >= self.shape[0] or \ voxelLoc[0] >= self.shape[0] or \
voxelLoc[1] >= self.shape[1] or \ voxelLoc[1] >= self.shape[1] or \
voxelLoc[2] >= self.shape[2]: voxelLoc[2] >= self.shape[2]:
return np.nan return []
return self.data[voxelLoc[0], voxelLoc[1], voxelLoc[2], :] return self.data[voxelLoc[0], voxelLoc[1], voxelLoc[2], :]
...@@ -38,10 +38,9 @@ messages = TypeDict({ ...@@ -38,10 +38,9 @@ messages = TypeDict({
'installing the colour map', 'installing the colour map',
'AtlasInfoPanel.notMNISpace' : 'Atlas lookup can only be performed on ' 'AtlasInfoPanel.notMNISpace' : 'Atlas lookup can only be performed on '
'images registered to MNI152 space', 'images oriented to MNI152 space',
'AtlasInfoPanel.nonVolumetric' : 'Atlas lookup can only be performed on ' 'AtlasInfoPanel.noReference' : 'No reference image available',
'volumetric images',
'AtlasInfoPanel.chooseAnAtlas' : 'Choose an atlas!', 'AtlasInfoPanel.chooseAnAtlas' : 'Choose an atlas!',
'AtlasInfoPanel.atlasDisabled' : 'Atlases are not available', 'AtlasInfoPanel.atlasDisabled' : 'Atlases are not available',
......
...@@ -14,7 +14,6 @@ import pwidgets.elistbox as elistbox ...@@ -14,7 +14,6 @@ import pwidgets.elistbox as elistbox
import fsl.fslview.panel as fslpanel import fsl.fslview.panel as fslpanel
import fsl.data.atlases as atlases import fsl.data.atlases as atlases
import fsl.data.image as fslimage
import fsl.data.strings as strings import fsl.data.strings as strings
import fsl.data.constants as constants import fsl.data.constants as constants
import fsl.utils.transform as transform import fsl.utils.transform as transform
...@@ -88,14 +87,20 @@ class AtlasInfoPanel(fslpanel.FSLViewPanel): ...@@ -88,14 +87,20 @@ class AtlasInfoPanel(fslpanel.FSLViewPanel):
self.__infoPanel.Bind(wxhtml.EVT_HTML_LINK_CLICKED, self.__infoPanel.Bind(wxhtml.EVT_HTML_LINK_CLICKED,
self.__infoPanelLinkClicked) self.__infoPanelLinkClicked)
displayCtx.addListener('location', overlayList.addListener('overlays',
self._name, self._name,
self.__locationChanged) self.__selectedOverlayChanged)
displayCtx.addListener('selectedOverlay', displayCtx .addListener('selectedOverlay',
self._name, self._name,
self.__locationChanged) self.__selectedOverlayChanged)
displayCtx .addListener('overlayOrder',
self.__locationChanged() self._name,
self.__selectedOverlayChanged)
displayCtx .addListener('location',
self._name,
self.__locationChanged)
self.__selectedOverlayChanged()
self.Layout() self.Layout()
self.SetMinSize(self.__sizer.GetMinSize()) self.SetMinSize(self.__sizer.GetMinSize())
...@@ -107,8 +112,10 @@ class AtlasInfoPanel(fslpanel.FSLViewPanel): ...@@ -107,8 +112,10 @@ class AtlasInfoPanel(fslpanel.FSLViewPanel):
""" """
fslpanel.FSLViewPanel.destroy(self) fslpanel.FSLViewPanel.destroy(self)
self._displayCtx.removeListener('location', self._name) self._overlayList.removeListener('overlays', self._name)
self._displayCtx.removeListener('selectedOverlay', self._name) self._displayCtx .removeListener('location', self._name)
self._displayCtx .removeListener('selectedOverlay', self._name)
self._displayCtx .removeListener('overlayOrder', self._name)
def enableAtlasInfo(self, atlasID): def enableAtlasInfo(self, atlasID):
...@@ -139,17 +146,43 @@ class AtlasInfoPanel(fslpanel.FSLViewPanel): ...@@ -139,17 +146,43 @@ class AtlasInfoPanel(fslpanel.FSLViewPanel):
self.__atlasPanel.toggleOverlay(atlasID, labelIndex, summary) self.__atlasPanel.toggleOverlay(atlasID, labelIndex, summary)
def __selectedOverlayChanged(self, *a):
"""
"""
if len(self._overlayList) == 0:
self.__locationChanged()
return
selOverlay = self._displayCtx.getSelectedOverlay()
for ovl in self._overlayList:
opts = self._displayCtx.getDisplay(ovl).getDisplayOpts()
if ovl == selOverlay:
opts.addGlobalListener( self._name,
self.__locationChanged,
overwrite=True)
else:
opts.removeGlobalListener(self._name)
self.__locationChanged()
def __locationChanged(self, *a): def __locationChanged(self, *a):
overlay = self._displayCtx.getSelectedOverlay() overlay = self._displayCtx.getSelectedOverlay()
opts = self._displayCtx.getDisplay(overlay).getDisplayOpts()
overlay = opts.getReferenceImage()
text = self.__infoPanel text = self.__infoPanel
if len(atlases.listAtlases()) == 0: if len(atlases.listAtlases()) == 0:
text.SetPage(strings.messages['AtlasInfoPanel.atlasDisabled']) text.SetPage(strings.messages['AtlasInfoPanel.atlasDisabled'])
return return
if not isinstance(overlay, fslimage.Image): if overlay is None:
text.SetPage(strings.messages['AtlasInfoPanel.nonVolumetric']) text.SetPage(strings.messages['AtlasInfoPanel.noReference'])
return return
if overlay.getXFormCode() != constants.NIFTI_XFORM_MNI_152: if overlay.getXFormCode() != constants.NIFTI_XFORM_MNI_152:
...@@ -159,11 +192,11 @@ class AtlasInfoPanel(fslpanel.FSLViewPanel): ...@@ -159,11 +192,11 @@ class AtlasInfoPanel(fslpanel.FSLViewPanel):
if len(self.__enabledAtlases) == 0: if len(self.__enabledAtlases) == 0:
text.SetPage(strings.messages['AtlasInfoPanel.chooseAnAtlas']) text.SetPage(strings.messages['AtlasInfoPanel.chooseAnAtlas'])
return return
display = self._displayCtx.getDisplay(overlay) opts = self._displayCtx.getDisplay(overlay).getDisplayOpts()
loc = self._displayCtx.location loc = self._displayCtx.location
loc = transform.transform( loc = transform.transform(
[loc], display.getTransform('display', 'world'))[0] [loc], opts.getTransform('display', 'world'))[0]
lines = [] lines = []
titleTemplate = '<b>{}</b> (<a href="summary {} {}">Show/Hide</a>)' titleTemplate = '<b>{}</b> (<a href="summary {} {}">Show/Hide</a>)'
...@@ -172,7 +205,7 @@ class AtlasInfoPanel(fslpanel.FSLViewPanel): ...@@ -172,7 +205,7 @@ class AtlasInfoPanel(fslpanel.FSLViewPanel):
for atlasID in self.__enabledAtlases: for atlasID in self.__enabledAtlases:
atlas = self.enabledAtlases[atlasID] atlas = self.__enabledAtlases[atlasID]
lines.append(titleTemplate.format(atlas.desc.name, atlasID, None)) lines.append(titleTemplate.format(atlas.desc.name, atlasID, None))
......
...@@ -151,7 +151,7 @@ class AtlasPanel(fslpanel.FSLViewPanel): ...@@ -151,7 +151,7 @@ class AtlasPanel(fslpanel.FSLViewPanel):
if overlay is not None: if overlay is not None:
self.clearAtlas(atlasID, summary) self.clearAtlas(atlasID, summary)
self._overlayList.remove(overlay) self._overlayList.remove(overlay)
self.overlayPanel.setOverlayState( self.__overlayPanel.setOverlayState(
atlasID, labelIdx, summary, False) atlasID, labelIdx, summary, False)
log.debug('Removed overlay {}'.format(overlayName)) log.debug('Removed overlay {}'.format(overlayName))
return return
...@@ -201,9 +201,12 @@ class AtlasPanel(fslpanel.FSLViewPanel): ...@@ -201,9 +201,12 @@ class AtlasPanel(fslpanel.FSLViewPanel):
else: display.getDisplayOpts().cmap = 'hot' else: display.getDisplayOpts().cmap = 'hot'
else: else:
# The Harvard-Oxford atlases have special colour maps # The Harvard-Oxford atlases have special colour maps
if atlasID == 'HarvardOxford-Cortical': cmap = 'cortical' if atlasID == 'HarvardOxford-Cortical':
elif atlasID == 'HarvardOxford-Subcortical': cmap = 'subcortical' cmap = 'MGH Cortical'
else: cmap = 'random' elif atlasID == 'HarvardOxford-Subcortical':
cmap = 'MGH Sub-cortical'
else:
cmap = 'Random'
display.getDisplayOpts().cmap = cmap display.getDisplayOpts().cmap = cmap
...@@ -212,15 +215,17 @@ class AtlasPanel(fslpanel.FSLViewPanel): ...@@ -212,15 +215,17 @@ class AtlasPanel(fslpanel.FSLViewPanel):
atlasDesc = atlases.getAtlasDescription(atlasID) atlasDesc = atlases.getAtlasDescription(atlasID)
label = atlasDesc.labels[labelIdx] label = atlasDesc.labels[labelIdx]
overlay = self._displayCtx.getSelectedOverlay()
opts = self._displayCtx.getDisplay(overlay).getDisplayOpts()
overlay = opts.getReferenceImage()
overlay = self._displayCtx.getSelectedOverlay() if overlay is None:
display = self._displayCtx.getDisplay(overlay) log.warn('No reference image available - cannot locate region')
if not isinstance(overlay, fslimage.Image): opts = self._displayCtx.getDisplay(overlay).getDisplayOpts()
raise RuntimeError('Non-volumetric types not supported yet')
worldLoc = (label.x, label.y, label.z) worldLoc = (label.x, label.y, label.z)
dispLoc = transform.transform( dispLoc = transform.transform(
[worldLoc], display.getTransform('world', 'display'))[0] [worldLoc], opts.getTransform('world', 'display'))[0]
self._displayCtx.location.xyz = dispLoc self._displayCtx.location.xyz = dispLoc
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