Difference between revisions of "Documentation/Nightly/Developers/FAQ/General"

From Slicer Wiki
Jump to: navigation, search
(8 intermediate revisions by 2 users not shown)
Line 97: Line 97:
 
== What is the difference between Slicer Plot and Chart ? ==
 
== What is the difference between Slicer Plot and Chart ? ==
  
Slicer has two plotting infrastructures: Plot and Chart. The first is a pure C++ environment built on the top of VTKPlots [https://www.slicer.org/wiki/Documentation/Nightly/Developers/Plots].  
+
Slicer currently has two ways of displaying plots: Plot and Chart:
The second is developed in C++ as well (MRML, Widgets) and it wraps and uses a JavaScript library, jqPlot, for the rendering [https://www.slicer.org/wiki/Documentation/Nightly/Developers/Charts].
+
* [[Documentation/{{documentation/version}}/Developers/Plots | Plots]]: C++ environment based on VTK plots.
 +
** Advantages:
 +
*** Plots display data stored in [[Documentation/{{documentation/version}}/Modules/Tables | Tables]]. Data is synchronized, therefore any data change in a table updates corresponding plots immediately.
 +
*** Interactive capabilities, such as data selection, point editing by click-and-drag.
 +
*** Faster plotting for many points (number of points > 10^5 is not a problem, it is useful for data exploration).
 +
* [[Documentation/{{documentation/version}}/Developers/Charts | Charts]]: uses a JavaScript library, jqPlot, for the rendering.
 +
** Advantages: slightly better quality rendering.
  
<br>
+
Chart infrastructure will be probably deprecated and removed from future versions of Slicer.
Although the two infrastructures may look similar and a duplicate of each other, there have both major advantages (which it makes worth to bundle Slicer with both):
 
* Charts have more capabilities for bar plots (categorical, etc.) and the rendering is of better quality (i.e., ready for publication).
 
* Plots are connected with vtkTables and therefore with the Table Module [https://www.slicer.org/wiki/Documentation/Nightly/Modules/Tables]. In Addition, Plots have more interactive capabilities (e.g., data selection, click and drag) and show faster performance for N (number of points) > 10^5 (i.e., useful for data exploration).
 

Revision as of 16:23, 7 February 2018

Home < Documentation < Nightly < Developers < FAQ < General


For the latest Slicer documentation, visit the read-the-docs.


General

What is Slicer ?

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 Slicer Discourse Forum or using the issues tracker.

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.

How can I get help debugging my code?

You can post questions to the developer mailing list.

Please consider:

  • Review the mailing list archives for similar questions
  • If you ask a coding question, try to use a Short Self-Contained Correct Example
  • It's a friendly community but people are busy so if you get a terse response don't take it personally :-)

How to setup for Git development ?

See Slicer Setup

How to contribute a patch ?

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

It is assumed that you followed the New community member checklist, have a clone of https://github.com/Slicer/Slicer/ and have setup the development environment as described here.

  1. Create an issue in the tracker setting severity to feature. For example, see issue #1906

    1. For simple changes (e.g typo, ...), this step is optional.
  2. Make sure your clone has a git remote. After forking Slicer repository, 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. Fix the code or implement your feature, then commit your change(s)

    1. Make sure to read the Slicer Coding and Commit Style Guide
  5. Publish the topic on your fork

    git push jcfr 1906-uninstall-extensions-on-restart
    
  6. Create a Pull Request and add a note to the issue with a link pointing to your topic. For example, see note 1906#c4578



What is our bug / feature request workflow ?

The following diagram illustrates Slicer issue workflow:

Mantis-workflow.png

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


How to schedule a Developer Hangout ?

See instruction here


Should core feature be implemented in C++ or Python ?

There is no one-size-fits-all answer to this. There are many examples of "core' features of Slicer implemented using a variety of programming languages and techniques.

  • MRML and most Logic operations are in C++, implemented as VTK subclasses
  • the Application and most GUI functionality is in C++, implemented as QWidget subclasses
  • most bundled modules are implemented as "loadable" modules, combining VTK and Qt parent classes
  • many important modules bundled with Slicer are implemented as python scripted modules (LabelStatistics, ExtensionWizard...) or with hybrid C++ and Python solutions (Editor, DICOM, DataProbe...)
  • other "core" features rely on JavaScript and web technologies (Charts, SceneViews, Extension Manager....)

The implementation choice depends heavily on the use case and the best judgement of the people who commit to maintain the code. If you are contributing an extension that you will maintain, you have a lot of flexibility. If you are hoping to pass off your code to others and you expect them to maintain it, then you should carefully follow the example of similar code that is already being maintained so that your code will be a pleasure to work with and not a misfit that causes trouble.


Original comment from Andras Lasso copied from PR#373 discussion.


There are many reasons for implementing Slicer core in C++, we just list here few reasons:

  • C++ rigor and extensive compile-time checks increases the chance of catching errors earlier. C++ enforces many things that in Python are managed by good programming practices (that are not enforced and in general not followed by Slicer developers).
  • C++ memory management is much more explicit, which is more difficult to learn than Python, but allows much better efficiency (you can prevent memory fragmentation, optimize memory reallocations, etc), which is useful for code that may run hundreds of times per second (this code does).
  • There are lots of good examples of solid, fast C++ displayable managers. Python displayable managers are more at the experimental level.
  • Accessibility of Python classes from C++ modules is cumbersome. Accessibility of C++ classes is very convenient from both Python and C++ modules.
  • Some projects don't use Python and don't want to use it (Python brings in huge amount of additional code, which is a problem if you want to minimize the amount of code that goes through regulatory approval)
  • Profiling and optimization of mixed C++/Python code is very difficult (both C++ and Python profilers treat the "other side" as black hole). Since all the rest of the Slicer core is implemented in C++ (with a few small exceptions), it is much easier to implement this in C++, too.


That said, we love Python programming, do it extensively, but implementing Slicer core features in Python has just too many disadvantages.

How to convert between ITK images and Slicer scalar volume nodes?

See discussion and relevant links at http://slicer-devel.65872.n3.nabble.com/Converting-ITK-image-to-Slicer-ScalarVolumeNode-td4035458.html

Steve Pieper's suggested architecture for using ITK code to process Slicer MRML data is as follows:

1) develop an ITK pipeline that implements the desired behavior

2) wrap the pipeline in a high level pure C++ ITK class that exposes the key inputs, output, parameters, and events

3) write a thin CLI wrapper around (2) using the Slicer Execution mode

4a) use the CLI in Slicer as-is

4b) write a scripted module that presents a higher level interface and calls the CLI

4c) if you need more interactivity, write a vtkITK wrapper around (2) that exposes the high level ITK class aspects using VTK conventions; expose this via a scripted or loadable module.

A nice thing about this approach is that (1) through (3) are all highly reusable in different contexts both in and out of Slicer.

Also this path, steps (1) through (4b) all the data types and orientation mappings between itk::Image and vtkMRMLScalarVolumeNode are handled automatically with existing mechanisms. Since the CLI is built as a shared library by default there is no file system overhead, just a few memcpys which is not much different than using the ITK pipeline directly.

Another option is to implement the pipeline in SimpleITK, but adding custom C++ code into the SimpleITK is more complex and I don't think it's even possible to do this as an extension, whereas the path described above is completely compatible with our extension process.

Note that the use case for the code that Raul points to is the opposite case, using a VTK class inside of an ITK pipeline. In this case ITKVtkGlue is very appropriate. The IJKToRAS transforms are not relevant since vtkImageData class does not support orientation and all the operations need to be performed in pixel space.

If CLI route is not suitable for some reason, helper classes are available in SlicerRT that do conversion between itkImage and vtkMRMLScalarVolumeNode initializing IJKtoRAS matrix, see https://github.com/SlicerRt/SlicerRT/blob/master/SlicerRtCommon/SlicerRtCommon.h

What is the difference between Slicer Plot and Chart ?

Slicer currently has two ways of displaying plots: Plot and Chart:

  • Plots: C++ environment based on VTK plots.
    • Advantages:
      • Plots display data stored in Tables. Data is synchronized, therefore any data change in a table updates corresponding plots immediately.
      • Interactive capabilities, such as data selection, point editing by click-and-drag.
      • Faster plotting for many points (number of points > 10^5 is not a problem, it is useful for data exploration).
  • Charts: uses a JavaScript library, jqPlot, for the rendering.
    • Advantages: slightly better quality rendering.

Chart infrastructure will be probably deprecated and removed from future versions of Slicer.