Difference between revisions of "Documentation/4.2/Developers/StartHere"

From Slicer Wiki
Jump to: navigation, search
Line 15: Line 15:
  
 
= Decisions =
 
= Decisions =
 +
Slicer has a plug-in architecture. There are different types of plug-ins available. We recommend to begin by programming a so-called command line interface plug-in or CLI plug-in.
 
# I would like to develop an extension for 3D Slicer
 
# I would like to develop an extension for 3D Slicer
 
+
## I program in C++ ==> Go here
 +
## I program in Python ==> Go here
 +
# I would like to use CLI modules to develop processing pipelines ==> Go here
  
 
= ToDo List for joining the Slicer Developer Community =
 
= ToDo List for joining the Slicer Developer Community =

Revision as of 13:09, 18 December 2012

Home < Documentation < 4.2 < Developers < StartHere
Standard File Dialog
Browse the image gallery

3D Slicer is a free open source extensible software application for medical image computing and visualization. Mainly written in C++ and based on the NA-MIC kit, 3D Slicer relies on a variety of libraries: VTK, ITK, CTK, CMake, Qt and Python.

To ensure the stability of the application, relying on a robust software process, the source code is compiled and tested on a daily basis on a variety of platform configurations. The testing results are summarized and reported using a web-based centralized CDash dashboard. Developers of 3D Slicer can also report issues on the open mailing list or using the web-based bug tracking system.

3D Slicer consists of both a lean application core and modules offering specific functionality. The core implements the user interface, provides support for data input/output (IO) and visualization and also exposes developer interfaces that support extension of the application with new modules.

Multiple types of modules are supported: CLI, Loadable module, Scripted module and Editor effect. While the developer has to choose between one of these types to implement its module, the end user won't notice the difference as they all share the same look & feel. The choice for a given type of module is usually based on the type of inputs/parameters for a given module.

These modules can be either built-in or installed on demand via the extensions manager.


Decisions

Slicer has a plug-in architecture. There are different types of plug-ins available. We recommend to begin by programming a so-called command line interface plug-in or CLI plug-in.

  1. I would like to develop an extension for 3D Slicer
    1. I program in C++ ==> Go here
    2. I program in Python ==> Go here
  2. I would like to use CLI modules to develop processing pipelines ==> Go here

ToDo List for joining the Slicer Developer Community

  1. Check.svg   Sign-up on the developers mailing list
  2. Check.svg   Register on the issue tracker
  3. Check.svg   Sign-up on github and setup Git
  4. Check.svg   Fork Slicer repository: https://github.com/Slicer/Slicer
  5. Check.svg   Read the Slicer Style Guidelines so that we all understand each other :)

Develop a module and create an extension

  1. Build Slicer application
  2. Learn about the different type of modules
  3. Create
    CLI module or
    Loadable module or
    Scripted module or
    Editor effect
  4. Read documentation guidelines
  5. Build modules outside of Slicer source tree.
  6. Hack, hack, hack :)
  7. Bundle module(s) into a Slicer extension
  8. Build, test, package and distribute extensions


Contribute a patch

The following instructions describes the recommended workflow to contribute patch to Slicer code base.

It is also assumed you followed the New community member checklist and have a clone of https://github.com/Slicer/Slicer/.

If not already done, make sure to read the Slicer Coding Style Guide :-)

  • 1. Create an issue in the tracker. For example, see issue #1906
  • 2. Make sure your fork has a git remote. Replace jcfr with your git login.
git remote add jcfr git@github.com:jcfr/Slicer.git
  • 3. Create a topic named <issuer_number>-a-descriptive-topic-name. For example:
git checkout -b 1906-uninstall-extensions-on-restart
  • 4. Add a note to the issue with a link pointing to your topic. For example, see note 1906#c4578
  • 5. Send an email on the slicer-developers list pointing to the reported bug. Title of the email should start with [BUG <IssueNumber>] Title of the bug - <category>


Mantis workflow

The following diagram illustrates Slicer issue workflow:

Mantis-workflow.png

Source: Adapted from http://www.warelab.org/blog/?p=24