Difference between revisions of "2012 Project Week:4DImageSlicer4"

From NAMIC Wiki
Jump to: navigation, search
Line 66: Line 66:
 
Questions:
 
Questions:
 
* are VTK plotting capabilities as in RT module available from python
 
* are VTK plotting capabilities as in RT module available from python
 +
** a ChartViewer (like a SliceView or 3D View that can be packed in a layout) is under development - Jim
 
* python vs c++ for the DCE GUI module
 
* python vs c++ for the DCE GUI module
 
* DWI volume has B-values vector, but only the last B-value is saved in the NRRD volume by Slicer -- is this expected?
 
* DWI volume has B-values vector, but only the last B-value is saved in the NRRD volume by Slicer -- is this expected?

Revision as of 14:44, 30 December 2011

Home < 2012 Project Week:4DImageSlicer4

Key Investigators

  • BWH: Andrey Fedorov
  • Isomics: Steve Pieper
  • BWH: Junichi Tokuda
  • MGH: Jayashree Kalpathy-Cramer

Objective

To discuss the architecture and work on implementing support for 4d images in Slicer4.

Our primary use case is to provide support for IO and visualization of DCE MRI, with the application specifically to prostate imaging.

Approach, Plan

Our initial plan was to follow on the steps of the DWI support already present in Slicer4, as discussed below.

Considering input from Steve, the ambitions were down-scaled.

An alternative approach could be:

  • use DicomToNrrdConverter to make a fake DWI from a DCE series
  • use custom module to inject timestamps into the DWI volume node, as if these were B-values. This way we can store timestamps together with the data.
  • provide custom GUI perhaps using a specialized module that would reuse DWI display node for vosualization, but will add
    • time scroller instead of the B-value scroller
    • plotting area for visualizing time curves
    • support for interactive selection of spatial location using mouse/keyboard or fiducial


We should consider the following aspects of the architecture and implementation:

  • IO
    • develop a customized NRRD format that would store time stamps for the individual frames. There is no currently such format. There is similar precedent in DicomToNrrdConverter and DWI support.
    • introduce new module, similar to DicomToNrrdConverter (or an option of operation for the DicomToNrrdConverter?) to convert a DICOM study into the customized format
    • introduce new storage nodes into Slicer4 that would enable IO of the customized NRRD format
    • discuss how the 4D MRI node would be related to the existing hierarchy of the volumes in Slicer -- should DWI and 4D MRI be siblings?
  • Visualization
    • anecdotally, very efficient visualization of 4D MRI studies is already possible by reading them as a DWI volume following DicomToNrrd module conversion.
    • an idea is to provide a custom GUI panel in the Volumes module. This would be similar to DWI visualization panel, but would include a field for displaying time stamps instead of b-values.
  • management
    • organize the time points in an hierarchy?
    • tool to add, remove time points
    • tool to provide a time range (start, end) instead of the entire range

Progress

Initial experiments showed the feasibility of the proposed approach:

  • DicomToNrrdConverer works for DCE data
  • B-values field can be used to store timestamps

Questions:

  • are VTK plotting capabilities as in RT module available from python
    • a ChartViewer (like a SliceView or 3D View that can be packed in a layout) is under development - Jim
  • python vs c++ for the DCE GUI module
  • DWI volume has B-values vector, but only the last B-value is saved in the NRRD volume by Slicer -- is this expected?
  • what should be included in the DCE GUI module? plan: simplified version of the Volumes DWI panel, adjusted for DCE needs

Delivery Mechanism

This work will be delivered to the NA-MIC Kit as a core functionality of 3D Slicer v.4

References