Difference between revisions of "Slicer4:SliceViews"

From Slicer Wiki
Jump to: navigation, search
Line 10: Line 10:
 
=== Background ===
 
=== Background ===
  
Because the slice views include significant interactive components they rely on all parts of slicer.  In Slicer3, the slice view depended not only on VTK, but also on the KWWidgets GUI infrastructure to implement much of the event management and display.  This code was developed using object oriented scripting (incrTcl) on top of tcl-wrapped VTK and KWWidgets (http://viewvc.slicer.org/viewcvs.cgi/branches/Slicer-3-6/Base/GUI/Tcl/).
+
Because the slice views include significant interactive components they rely on all parts of slicer.  In Slicer3, the slice view depended not only on VTK, but also on the KWWidgets GUI infrastructure to implement much of the event management and display.  This code was developed using object oriented scripting (incrTcl) on top of tcl-wrapped VTK and KWWidgets (http://viewvc.slicer.org/viewcvs.cgi/branches/Slicer-3-6/Base/GUI/Tcl/).  The [http://viewvc.slicer.org/viewcvs.cgi/branches/Slicer-3-6/Modules/Editor/ Editor Module] also relies heavily on this infrastructure.
  
 
=== Adapter Layer ===
 
=== Adapter Layer ===

Revision as of 20:58, 26 August 2010

Home < Slicer4:SliceViews

This is a page describing the functionality, architecture and implementation of the Slicer4 slicer4 slice views.

Goals

The overall goal is to provide a full-featured set of 2D slice capability with at least the level of functionality, performance, and accuracy provided in slicer3. This implementation needs to be accomplished by the slicer4 team during the summer/fall 2010 timeframe for delivery to the larger developer community for use during the January 2010 NA-MIC All Hands Meeting.


Approach

Background

Because the slice views include significant interactive components they rely on all parts of slicer. In Slicer3, the slice view depended not only on VTK, but also on the KWWidgets GUI infrastructure to implement much of the event management and display. This code was developed using object oriented scripting (incrTcl) on top of tcl-wrapped VTK and KWWidgets (http://viewvc.slicer.org/viewcvs.cgi/branches/Slicer-3-6/Base/GUI/Tcl/). The Editor Module also relies heavily on this infrastructure.

Adapter Layer

In slicer4 uses Qt instead of KWWidgets, and python-wrapped VTK so porting the existing code is non-obvious. To address this, a python-in-tcl compatibility layer was added to slicer to allow tcl scripts to run on top of a python-wrapped vtk (this is essentially the inverse of the slicer3 python functionality that allow python scripts to run on top of a tcl-wrapped vtk).

In addition, a number of KWWidgets and Slicer3 helper classes (such as the vtkKWRenderWidget, vtkSlicerApplicationGUI, etc) are not available in slicer4. To address this, a Slicer3Adapters.tcl file contains a set of facade classes that mimic the needed parts of the behavior of slicer3 classes.

Longer Term

Slicer4 has adopted the concept of MRML Displayable Managers as a way to organize interactive components in 2D and 3D views. As time permits, more and more of the behavior will be ported and implemented in this framework. Once functionality parity is achieved, the adapter layer can be phased out.

Development Issues

This section refers to active development issues during summer/fall 2010:

  • slice view corner annotation - in slicer3 this was in vtkKWRenderWidget, in slicer4 functionality not yet exposed
  • status label - in slicer3 was in vtkSlicerApplication - slicer4: ?
  • sliceplane widget - in slicer3 each slice view was able to add a 3D vtk widget directly to the 3D viewer - for slicer4 we will want to have a 3D Displayable manager to manage this (and a setting on a mrml node, probably the slice node, indicating that the viewer should be visible).
  • need to be able to access a 'RequestRender' method from the script. This is needed so that any SWidget that adds or modifies vtkActors in the slice view can ask for a render to be performed during the next idle time in the event loop.
  • come up with an application wide control for 'ownership' of the events. In slicer3's vtkSlicerSliceGUI an SWidget could set the GrabID member to a unique string so that other widgets would not try to respond to the event (but would have a chance to examine it if they wished, and sometimes do actions like de-highlight themselves). For example, if you mouse over a fiducial, it sets the grab id to itself and then highlights itself. If a left mouse click comes before the mouse moves off the fiducial, the fiducial responds and not the default left mouse handler (window/level control).
  • application resources and themes - a script may need to get the current theme info (colors, fonts, etc). I'm guessing there's a way to do this with PythonQt.
  • implement delayed annotation calculation and display. We found that vtkText display is fairly slow and should not be updated at every frame while interacting. For slicer3 there is a delayed annotation feature so the text only shows if your mouse is not moving for 300 milliseconds. We will need something similar for slicer4.
  • Compare View: relies on helper methods from the Slices module to coordinate which slice views should be linked. This will need to be reimplemented for slicer4.
  • Need a way to create a fiducial in the mrml scene at a given point - in slicer3 the FiducialsSWidget code had access to the FiducialsLogic::AddFiducialPicked method.
  • object references are not properly cleaned up yet.
  • need a way to emulate the tcl 'after' command with either 'idle' argument or number of milliseconds argument. It seems QTimer is not exposed in PythonQt currently.

Status

  • built when Slicer3_USE_PYTHONQT_WITH_TCL is enabled in the Advanced section of CMake.
  • What works 2010-08-26:
    • slice controls: pan/zoom, mouse wheel, arrow keys, rotate with control-right when in reformat mode
    • fiducial display and interaction (need to load a scene that includes fiducials - cannot create in slicer4 yet).
    • slice intersection display (turn on in the Manipulate Slice Views cursor menu). Need to move mouse into window to trigger redraw.
    • window/level control with left mouse button
  • Not yet working:
    • label grid not tested (can't display label layer in slicer4 yet)
    • crosshairs not displaying
    • there is room for more performance optimization once the 'after' command is fixed
    • slice plane widget