Documentation/Labs/Slicer5-roadmap

From Slicer Wiki
Jump to: navigation, search
Home < Documentation < Labs < Slicer5-roadmap

The major version number upgrade to 5 provides an opportunity to make changes that affect the application, the API, or the code in a way that was not possible in the past seven or so years.

This page collects community suggestions related to the transition plan for Slicer 4.10 and major changes for Slicer 5.x

Related forum post: https://discourse.slicer.org/t/slicer-5-0-deprecation-discussion-wiki/2377

Overall Goals

  • Improve user experience
    • More logical interface
    • Perform most common tasks easily
    • Easier to discover advanced features
    • Improve asynchronous behavior (like loading data in a background thread)
  • Defining core and extensions
    • Core functionality is:
      • DICOM and other format I/O, Subject management
      • Visualization 2D/3D/4D
      • Segmentation
      • Transforms and Registration
      • Annotations and Markups
      • Programmability and Extensibility
    • Move some extensions to core (Sequences, DICOMPlugins...)
    • Move some core to extensions (SimpleITK, Editor...)
  • Simplify maintenance
    • Remove legacy code that adds more complexity than value
    • Deprecate support for older build options and platforms (old libs, old compilers, etc)
    • Simplify documentation creation and use
    • Streamline the build and release process
    • Use unmodified upstream libraries
  • Developer experience
    • Improve API / Scripting documentation organization / search engine optimization
    • Simplify/accelerate build process on all platforms (options to use prebuilt sdk for example)
    • Use standard packages (Qt, Python, VTK, ITK)

Specific Change Proposals

Slicer 5.0: Backward incompatible changes

Third-party library updates

  • Update to latest VTK: may fix issues in rendering (Virtual Reality Qt widget, plot line markers)
  • Update to latest Qt: May fix Qt temporary hang on startup and when showing file dialog

Python3

Switch to Python3 and use the same compiler as official Python distribution. This would allow installation of any Python package inside Slicer's Python environment.

Tasks:

Some of the issues discovered after integration of Python 3:

References:


Revisit MRML Copy API

Copy method does not perform complete deep-copy in some classes. For Sequences, we need both DeepCopy (for node modifications) and ShallowCopy (for fast replay possible).

There are also too many variants of node copy methods, which makes it difficult to use them correctly.

See also https://issues.slicer.org/view.php?id=2608.

Assign to Andras Lasso. - DONE Check.svg

Coordinate system in files

To be consistent with the rest of the world: Save models and markups in LPS coordinate system by default. If no coordinate system is specified in input file, assume LPS. See https://issues.slicer.org/view.php?id=4445

Acquisition transform

Enable acquisition transform by default, to show correct loading of tilted gantry images. It has proven to work well. See https://github.com/Slicer/Slicer/commit/b7650af3c27f34fc894bfdd587f2a4c02ba62a8b

Model Hierarchies

Remove Model Hierarchy feature and make sure that Subject Hierarchy covers all use cases. This will impact ModelMaker, which should be converted to a simpler version that only returns models and not semantics. Need to check extensions, especially SlicerDMRI, for any dependencies on Model Hierarchy. - DONE Check.svg

Extension description file format

Transition from `.s4ext` text file to a json or yaml.

Remove deprecated modules and/or Migrate to extension

Editor

The module already directs users to Segment Editor, which provides all the functionality of Editor and more, and is the successor module that will be improved and maintained. Removing it would decrease confusion of both old and new Slicer users

  • Potentially the hack about modules with names ending with the string "Lib" can also be removed after the Editor module will not require it. It is around here.
  • Make Editor hidden in 4.10, advertise its removal (some extensions still use it), then remove it in 5.0. Remove it from toolbar, move Editor to legacy category in 4.10
  • Investigate if the module could easily be moved to an extension

VectorToScalarVolume

The plan would be to improve the Volume module so that vector volume could be converted to scalar volume, similarly to scalar to labelmap conversion option. Then, this module could be removed.

Unused module code

  • MultiVolumeRendering: A module that was effectively not developed since 2012, and is not currently compiled with Slicer. - Removed in r27087
  • Measurements: Same argument as MultiVolumeRendering - Removed in r27087
  • AtlasCreator Loadable module logic - Removed in r27088

CLI modules

  • Model to Label Map: Has too many limitations and bugs (cannot handle concave structures, can cause Slicer to hang or crash, etc.), and is not maintained any more. It might be better to remove it than to fix it, especially that there is an algorithm for the same thing in Slicer that works much better
    • The model node to labelmap node conversion feature could be added as a subject hierarchy plugin, if the route via segmentation node is not convenient enough
  • Review CLI modules
    • BlobDetection
    • ConnectedComponent
    • GrayscaleModelMaker, ModelMaker: The modules are too different to combine them. Each have specific use cases.
    • DiffusionTensorTest, ROITest, TestGridTransformRegistration: Already excluded from package by specifying NO_INSTALL
    • Resample Scalar Volume: Resample Scalar/Vector/DWI Volume module (which Crop Volume uses as well) can do everything it does already, except for four extra interpolation options. Probably can be removed

Migrate to extension

Existing DMRIInstall scripted module will be re-factored and moved into a Modules/Scripted/InstallSuggestions directory.

Then, after transitioning them to extension, the following module will be added to the "InstallSuggestions" so that the user knows how to install them:

  • BRAINSTools (also add SlicerElastix to the suggestions)
  • SimpleITK: Only used in the editor
  • EMSegment: already disabled in Slicer-4.10, so it may be completely removed from build scripts instead of moving it to an extension

Notes:

  • 2018-12-13: Jc: Following discussion with Ron, we need to make sure to have at least one non-rigid registration method and one ICP based method (e.g Landmark Registration) available in the main distribution.

PETStandardUptakeValueComputation

Remove PETStandardUptakeValueComputation from Slicer core, as a more advanced version of this is available in an extension: https://github.com/QIICR/Slicer-PETDICOMExtension. See details here: https://github.com/Slicer/Slicer/pull/1068#issuecomment-450905887

Coding Style

Slicer 5.0: Indentation of curly braces

In Slicer the curly braces have a two-space indentation everywhere within functions. As this was inherited from VTK, but VTK changed its convention to align the braces with the statements (if etc.), it could make sense to make the change in Slicer too. This is considered a major change because it affects almost all cxx files.

Simpler VTK smart pointer usage

Use vtkNew<type> var; instead of vtkSmartPointer<type> var = vtkSmartPointer<type>::New(); and remove now unnecessary .GetPointer() calls.

Usability

Volume Rendering Activation Method

We have had lots of issues with people finding the eye icon.

Miscellaneous

Tcl codes

Most of the TCL code seems to be a heritage from Slicer3. Can they be removed? - Done in r27091

Remove self-test modules from the All modules list

Users already find the all modules list very long, and as the self tests are for developers only (and can be found in the modules list under the Testing category), they could be removed from the list. Make sure they are available in Developer mode.

Remove BTX/ETX pairs

Once VTK7 is no longer supported, the old way for disabling python wrapping is no longer needed. According to my tests (Csaba), wrapping works fine in all of those cases, so the new way (#ifndef __VTK_WRAP__) is not needed either.

Slicer 5.2: Backward incompatible changes

Build System Simplification

  • Pick the most recent reasonable CMake version and remove any complexities in the build system are only there to work around limitations of old CMake versions.
  • Consider any ways to streamline/simplify the configure and build process, even it if may require changing extensions.
  • Look for ways to minimize the effect of long directory path-related build issues. Currently on mac and windows we are pushing the limit of path length unless very short paths are used (e.g. /s5 or d:\s5). Reorganizing the build tree might give us more headroom.

Remove remote data support from MRML

MRML theoretically supports downloading files through http, but this feature has not seen much use. This will not likely to change in the future because there is a wide range of data access and authentication protocols, which would not be practical at MRML level.

It would be better to remove remote data support from MRML to simplify data storage. We can keep useful utility classes, such as cache manager for keeping track of local temporary files (downloaded using SampleData or other modules that download significant amount of temporary data).

See also https://discourse.slicer.org/t/improving-testing-data-management-for-self-test/5014/4.

Improve layout manager

  • Support multiple displays: Currently, it is very hard to leverage multiple displays (need to stretch the Slicer window over multiple screens and align splitter manually to the screen boundary). Allow defining single-display and multi-display layouts. Single-display layouts could be selected for each display independently, while multi-monitor layouts would set views on several displays at once. Keeping a single layout manager (and enhance it with to allow creation of multiple widgets) would make it easier to maintain backward compatibility for existing modules.
  • View layout IDs: View layout IDs are currently integer values, which makes it difficult to ensure that modules always choose unique IDs. We should switch to using string IDs. String IDs can may be prefixed with modulename+"." as we do it for singleton tags and node attributes. We may remain somewhat backward compatible by having SetLayoutID(int) method that maps known layout integer IDs to the new string IDs. See discussion here: https://github.com/Slicer/Slicer/pull/1061#discussion_r241825827

SceneViews

The scene views feature does not work well for a long time now, and there is no consensus about what should be the scope it supports.

Suggestion:

  • Do not save the state of all nodes: Support only display, view and hierarchy nodes.
  • Make SceneViews as stable as possible for these cases and remove support for data notes etc.
  • If a node is removed, update associated scene views

Notes:

  • 2018-12-13: Jc: Following discussion with Ron, we should keep the SceneView functionality. All data should be associated with the "master" view, and scene view should be different combination of viewing parameters (layout, camera, visibility, etc ...). A mrb to consider for testing is the LungSegments_scene.mrb
  • Another suggestion from Sonia is that SceneViews could be read-only for certain classes of nodes. It's not clear how that would be implemented, but it could address the instability problems while enabling the use of SceneViews for training.

Undo/Redo

Similarly to SceneViews, it is a great feature but in time it started breaking. Need to decide if we want to keep it, and if yes fix it.

Potential fix (currently being tested by Kyle Sunderland and Andras Lasso): Add an "undo enabled" flag to vtkMRMLNode, disable it by default, only enable it for nodes that undo/redo has tested to work correctly. Preliminary tests show that the feature largely works, but there are complications with undo/redo of node add/remove actions and node references.

Notes:

  • 2018-12-13: Jc: Following discussion with Ron, would be nice to also have undo/redo for camera settings, field of view, etc ... within a given view. It is easy to inadvertently modify settings ... (e.g when trying to pan using a trackpad with shift+left click but inadvertently using only left click)

Removal of Charts based infrastructure

With Slicer 5.0, the idea is to remove the Charts infrastructure based on jqPlot, and only keep the Plots infrastructure based on VTK Charts. Ron's request: enable anti-aliasing (MSAA or FXAA) and use less subtle default colors (https://www.slicer.org/wiki/Slicer4:2012_GenericChartColors) to improve appearance.

Additional proposed changes to be discussed