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

SliceCanvas supports multiple images. Well, it looks like it should, but I...

SliceCanvas supports multiple images. Well, it looks like it should, but I haven't yet tested it with more than one.
parent 735a0e58
No related branches found
No related tags found
No related merge requests found
...@@ -118,5 +118,5 @@ class ImageList(object): ...@@ -118,5 +118,5 @@ class ImageList(object):
if images is None: images = [] if images is None: images = []
if displays is None: displays = [] if displays is None: displays = []
self._images = images self.images = images
self._displays = displays self.displays = displays
...@@ -40,6 +40,8 @@ class ImageView(wx.Panel): ...@@ -40,6 +40,8 @@ class ImageView(wx.Panel):
self.imageDisplay = fslimage.ImageDisplay(image) self.imageDisplay = fslimage.ImageDisplay(image)
imageList = fslimage.ImageList([image], [self.imageDisplay])
wx.Panel.__init__(self, parent, *args, **kwargs) wx.Panel.__init__(self, parent, *args, **kwargs)
self.SetMinSize((300,100)) self.SetMinSize((300,100))
...@@ -49,11 +51,11 @@ class ImageView(wx.Panel): ...@@ -49,11 +51,11 @@ class ImageView(wx.Panel):
self.controlPanel = props.buildGUI(self, self.imageDisplay) self.controlPanel = props.buildGUI(self, self.imageDisplay)
self.xcanvas = slicecanvas.SliceCanvas( self.xcanvas = slicecanvas.SliceCanvas(
self.canvasPanel, self.imageDisplay, zax=0) self.canvasPanel, imageList, zax=0)
self.ycanvas = slicecanvas.SliceCanvas( self.ycanvas = slicecanvas.SliceCanvas(
self.canvasPanel, self.imageDisplay, zax=1, context=self.xcanvas.context) self.canvasPanel, imageList, zax=1, context=self.xcanvas.context)
self.zcanvas = slicecanvas.SliceCanvas( self.zcanvas = slicecanvas.SliceCanvas(
self.canvasPanel, self.imageDisplay, zax=2, context=self.xcanvas.context) self.canvasPanel, imageList, zax=2, context=self.xcanvas.context)
self.mainSizer = wx.BoxSizer(wx.VERTICAL) self.mainSizer = wx.BoxSizer(wx.VERTICAL)
self.canvasSizer = wx.BoxSizer(wx.HORIZONTAL) self.canvasSizer = wx.BoxSizer(wx.HORIZONTAL)
......
This diff is collapsed.
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