AHM2009:Plug-ins

From NAMIC Wiki
Revision as of 18:25, 8 January 2009 by Millerjv (talk | contribs)
Jump to: navigation, search
Home < AHM2009:Plug-ins

Back to AHM 2009 Agenda

There are several ways to integrate technology into Slicer3. This presentation discussions how the mechanisms compare and when to use each integration path.

Slicer module types

  • Built in modules
    • Slicer Base functionality
    • Access to full internals of Slicer
  • Loadable modules
    • Optional modules distributed with Slicer
    • Third party modules
    • Access to full internals of Slicer
  • Scripted modules
    • Written in Tcl or Python
    • Access to a subset of Slicer API (wrapped methods)
  • Command line modules
    • Simplest way to add functionality to Slicer
    • XML specification of plugin parameters
    • GUI, Logic, Node automatically constructed
    • Limited access to Slicer data
    • Types
      • Executable modules
        • Can be run inside Slicer or in batch
      • Shared objects modules
        • Same source code style as Executable modules but with direct access to some data in MRML tree
      • Python modules
        • Similar coding style as shared object modules but in Python
  • Daemon
    • slicerget, slicerput