Difference between revisions of "Documentation/Nightly/Announcements"

From Slicer Wiki
Jump to: navigation, search
Line 84: Line 84:
 
= Other Improvements, Additions & Documentation =
 
= Other Improvements, Additions & Documentation =
  
== Optimization ==
+
To be done
 
 
* Improved performance of the rendering pipeline by optimizing observations management
 
 
 
* Reduced the memory footprint by fixing memory leaks
 
 
 
* Reduced the size of the installer
 
 
 
* Faster loading of the image stack (png, jpg, bmp, tiff...)
 
 
 
== Rendering / Visualization ==
 
 
 
* Added Multi-sampling option
 
 
 
== CLI / SlicerExecutionModel ==
 
 
 
* Improved [http://www.kitware.com/blog/home/post/482 CLI AutoRun] by ensuring that the slice view is not reset when inputs are updated.
 
* CLI input and output files are not removed when in developer mode
 
* Reduced the chance of crashes when CLI returns result images
 
 
 
== Python scripting ==
 
 
 
* Added support for real Qt resources in Python (see [http://viewvc.slicer.org/viewvc.cgi/Slicer4?view=revision&revision=23290 r23290] for details).
 
 
 
* Improved VTK event support by adding a way to specify the CallData type (see [https://github.com/Kitware/VTK/blob/0ed018620d0a3187ee2ed2831843132ca3337c97/Wrapping/Python/README_WRAP.txt#L266-296 here] for details).
 
 
 
* Bundled [http://code.google.com/p/pydicom/ pydicom] python module into the Slicer package
 
 
 
* Added helper methods to <code>ScriptedLoadableModuleLogic</code> for managing parameter nodes
 
 
 
* SelfTest: Added the <code>clickAndDrag()</code> method to the scripted module construct. It allows to send synthetic mouse events to the widget specified ([http://slicer.org/doc/html/classqMRMLSliceWidget.html qMRMLSliceWidget] or [http://slicer.org/doc/html/classqMRMLThreeDView.html qMRMLThreeDView])
 
 
 
* Improvements to the <code>slicer.util</code> python module.
 
** Added <code>modulePath(moduleName)</code> method
 
** Added <code>resetThreeDViews/resetSliceViews</code>
 
** Added <code>VTKObservationMixin</code>
 
** Added <code>getFirstNodeByClassAndName()</code>
 
** Added <code>NodeModify</code> context manager: It allows to easily disable modified event associated with a node, and automatically re-enable them and invoking them if it applies.
 
 
 
* Markups: Added an event called [http://slicer.org/doc/html/classvtkMRMLMarkupsNode.html#a527d30c581763822ef32fc14b2ab5a94ad628dfaf54f410d2f4c6bc5800aa8a30 PointEndInteractionEvent] for marking the end of a fiducial interaction
 
 
* Reference information for how to write VTK filters and algorithms in python:
 
** The [http://www.kitware.com/blog/home/post/737 vtkPythonAlgorithm] is great
 
** [http://www.kitware.com/blog/home/post/752 A VTK pipeline primer (part 1)]: Explains how VTK’s pipeline works in more detail: <code>vtkInformation</code>, <code>vtkInformationVector</code> and <code>VTKPythonAlgorithmBase</code>
 
** [http://www.kitware.com/blog/home/post/757 A VTK pipeline primer (part 2)]: Dissecting the execution path to understand the inner-workings of algorithms: <code>RequestInformation</code>
 
** [http://www.kitware.com/blog/home/post/766 A VTK pipeline primer (part 3)]: Explains how <code>RequestUpdateExtent</code> and <code>RequestData</code> work.
 
 
 
== Other ==
 
 
 
* Help / Report a bug: Application error/warning/debug log messages are now saved to file. Added option to copy/paste log file contents of recent Slicer sessions to bug reports.
 
  
 
= For Developers =
 
= For Developers =

Revision as of 07:15, 29 October 2015

Home < Documentation < Nightly < Announcements


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




Nightly


Summary What is 3D Slicer Slicer Nightly Highlights Slicer Training Slicer Extensions Other Improvements, Additions & Documentation

Summary

The community of Slicer developers is proud to announce the release of Slicer Nightly.

  • Slicer Nightly introduces
    • An improved App Store, known as the Extension Manager, for adding plug-ins to Slicer. More than 80 plug-ins and packages of plug-ins are currently available.
    • Close to 150 feature improvements and bug fixes have resulted in improved performance and stability.
    • Improvements to many modules.
  • Click here to download Slicer Nightly for different platforms and find pointers to the source code, mailing lists and the bug tracker.
  • Please note that Slicer continues to be a research package and is not intended for clinical use. Testing of functionality is an ongoing activity with high priority, however, some features of Slicer are not fully tested.
  • The Slicer Training page provides a series of tutorials and data sets for training in the use of Slicer.

slicer.org is the portal to the application, training materials, and the development community.

What is 3D Slicer

3D Slicer is:

  • A software platform for the analysis (including registration and interactive segmentation) and visualization (including volume rendering) of medical images and for research in image guided therapy.
  • A free, open source software available on multiple operating systems: Linux, MacOSX and Windows
  • Extensible, with powerful plug-in capabilities for adding algorithms and applications.

Features include:

  • Multi organ: from head to toe.
  • Support for multi-modality imaging including, MRI, CT, US, nuclear medicine, and microscopy.
  • Bidirectional interface for devices.

There is no restriction on use, but Slicer is not approved for clinical use and intended for research. Permissions and compliance with applicable rules are the responsibility of the user. For details on the license see here

Slicer Nightly Highlights

Slicer Training

The Slicer Training page provides a series of updated tutorials and data sets for training in the use of Slicer Nightly.


Slicer Extensions

Extensions removed

  • NA

Extensions renamed

Other Improvements, Additions & Documentation

To be done

For Developers

Under the hood

  • Added support for user-defined stereo-viewing options
  • Build-system
    • Improved support for Visual Studio 2013
    • Refactored management of external project launcher settings. See r23724
    • Added option Slicer_ITKV3_COMPATIBILITY. This option enabled by default will allow (if disabled) to build Slicer with ITKv3 compatibility later disabled and ITK_USE_64BITS_IDS enabled.


Looking at the Code Changes

From a git checkout you can easily see the all the commits since the time of the 4.4.0 release:

git log v4.3.0..HEAD

To see a summary of your own commits, you could use something like:

git log v4.3.0..HEAD  --oneline --author=pieper

see the git log man page for more options.

Commit stats and full changelog

Related Projects