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

Documentation for imagetexture/selectiontexture modules.

parent 3aa4accc
No related branches found
No related tags found
No related merge requests found
...@@ -145,14 +145,16 @@ class ColourMapTexture(texture.Texture): ...@@ -145,14 +145,16 @@ class ColourMapTexture(texture.Texture):
def set(self, **kwargs): def set(self, **kwargs):
"""Set any parameters on this ``ColourMapTexture``. Valid keyword """Set any parameters on this ``ColourMapTexture``. Valid keyword
arguments are: arguments are:
- ``cmap`` ================ ============================
- ``invert`` ``cmap`` See :meth:`setColourMap`.
- ``interp`` ``invert`` See :meth:`setInvert`.
- ``alpha`` ``interp`` See :meth:`setInterp`.
- ``resolution`` ``alpha`` See :meth:`setAlpha`.
- ``displayRange`` ``resolution`` See :meth:`setResolution`.
- ``border`` ``displayRange`` See :meth:`setDisplayRange`.
``border`` See :meth:`setBorder`.
================ ============================
""" """
# None is a valid value for any attributes, # None is a valid value for any attributes,
......
This diff is collapsed.
#!/usr/bin/env python #!/usr/bin/env python
# #
# selectiontexture.py - see fsl.fsleyes.editor.selection.Selection # selectiontexture.py - The SelectionTexture class.
# #
# Author: Paul McCarthy <pauldmccarthy@gmail.com> # Author: Paul McCarthy <pauldmccarthy@gmail.com>
# #
"""This module provides the :class:`SelectionTexture` class, a
:class:`.Texture` type which can be used to store :class:`.Selection`
instances.
The :class:`SelectionTexture` class is used by the :class:`.VoxelSelection`
annotation.
"""
import logging import logging
...@@ -17,20 +24,34 @@ log = logging.getLogger(__name__) ...@@ -17,20 +24,34 @@ log = logging.getLogger(__name__)
class SelectionTexture(texture.Texture): class SelectionTexture(texture.Texture):
"""The ``SelectionTexture`` class is a :class:`.Texture` which can be used
to represent a :class:`.Selection` instance. The ``Selection`` image array
is stored as a single channel 3D texture, which is updated whenever the
:attr:`.Selection.selection` property changes, and whenever the
:meth:`refresh` method is called.
"""
def __init__(self, name, selection): def __init__(self, name, selection):
"""Create a ``SelectionTexture``.
:arg name: A unique name for this ``SelectionTexture``.
:arg selection: The :class:`.Selection` instance.
"""
texture.Texture.__init__(self, name, 3) texture.Texture.__init__(self, name, 3)
self.selection = selection self.__selection = selection
selection.addListener('selection', name, self._selectionChanged) selection.addListener('selection', name, self.__selectionChanged)
self._init() self.__init()
self.refresh() self.refresh()
def _init(self): def __init(self):
"""Called by :meth:`__init__`. Configures the GL texture. """
self.bindTexture() self.bindTexture()
...@@ -55,7 +76,7 @@ class SelectionTexture(texture.Texture): ...@@ -55,7 +76,7 @@ class SelectionTexture(texture.Texture):
gl.GL_TEXTURE_WRAP_R, gl.GL_TEXTURE_WRAP_R,
gl.GL_CLAMP_TO_BORDER) gl.GL_CLAMP_TO_BORDER)
shape = self.selection.selection.shape shape = self.__selection.selection.shape
gl.glTexImage3D(gl.GL_TEXTURE_3D, gl.glTexImage3D(gl.GL_TEXTURE_3D,
0, 0,
gl.GL_ALPHA8, gl.GL_ALPHA8,
...@@ -69,11 +90,35 @@ class SelectionTexture(texture.Texture): ...@@ -69,11 +90,35 @@ class SelectionTexture(texture.Texture):
self.unbindTexture() self.unbindTexture()
def destroy(self):
"""Must be called when this ``SelectionTexture`` is no longer needed.
Calls the :meth:`.Texture.destroy` method, and removes the listener
on the :attr:`.Selection.selection` property.
"""
texture.Texture.destroy(self)
self.__selection.removeListener('selection', self.getTextureName())
self.__selection = None
def refresh(self, block=None, offset=None): def refresh(self, block=None, offset=None):
"""Refreshes the texture data from the :class:`.Selection` image
data.
If ``block`` and ``offset`` are not provided, the entire texture is
refreshed from the :class:`.Selection` instance. If you know that only
part of the selection data has changed, you can use the ``block`` and
``offset`` arguments to refresh a specific region of the texture
(which will be faster than a full : refresh).
:arg block: A 3D ``numpy`` array containing the new selection data.
:arg offset: A tuple specifying the ``(x, y, z)`` offset of the
``block`` into the selection array.
"""
if block is None or offset is None: if block is None or offset is None:
data = self.selection.selection data = self.__selection.selection
offset = [0, 0, 0] offset = [0, 0, 0]
else: else:
data = block data = block
...@@ -98,12 +143,15 @@ class SelectionTexture(texture.Texture): ...@@ -98,12 +143,15 @@ class SelectionTexture(texture.Texture):
self.unbindTexture() self.unbindTexture()
def _selectionChanged(self, *a): def __selectionChanged(self, *a):
"""Called when the :attr:`.Selection.selection` changes. Updates
the texture data via the :meth:`refresh` method.
"""
old, new, offset = self.selection.getLastChange() old, new, offset = self.__selection.getLastChange()
if old is None or new is None: if old is None or new is None:
data = self.selection.selection data = self.__selection.selection
offset = [0, 0, 0] offset = [0, 0, 0]
else: else:
data = new data = new
......
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