Difference between revisions of "2016 Winter Project Week/Projects/SliceTracker"

From NAMIC Wiki
Jump to: navigation, search
m
 
(8 intermediate revisions by the same user not shown)
Line 1: Line 1:
<nowiki>Insert non-formatted text here</nowiki>==Key Investigators==
+
<gallery>
 +
Image:PW-MIT2016.png|link=2016_Winter_Project_Week#Projects|[[2016_Winter_Project_Week#Projects|Projects List]]
 +
<!-- Use the "Upload file" link on the left and then add a line to this list like "File:MyAlgorithmScreenshot.png" -->
 +
Image:2016WinterEBP_SliceTracker.jpg|SliceTracker Main Window Screenshot
 +
Image:2016WinterEBP_SliceTracker_1.jpg|SliceTracker Evaluation Window Screenshot</gallery>
 +
 
 +
==Key Investigators==
 
* Christian Herz (BWH)
 
* Christian Herz (BWH)
 
* Andriy Fedorov (BWH)
 
* Andriy Fedorov (BWH)
Line 14: Line 20:
 
<!-- Objective bullet points -->
 
<!-- Objective bullet points -->
 
* Slicer module implemented that allows the registration of the prostate  
 
* Slicer module implemented that allows the registration of the prostate  
* Integrate the z-frame and navigation component into the module
 
 
* Use SliceTracker during prostate biopsies as a replacement to current approach
 
* Use SliceTracker during prostate biopsies as a replacement to current approach
 
|
 
|
Line 24: Line 29:
 
|
 
|
 
<!-- Progress and Next steps bullet points (fill out at the end of project week) -->
 
<!-- Progress and Next steps bullet points (fill out at the end of project week) -->
 +
* Positive feedback for workflow and usability of the module
 
* LumpNav is a slicelet example to follow
 
* LumpNav is a slicelet example to follow
* what about simply hiding components (toolbars) that are not needed? (see example below)
+
* TODO:
 +
** Create an extension from that module and provide an appropriate example dataset
 +
** Integrate the z-frame and navigation component into the module
 
|}
 
|}
  
 
==Progress notes==
 
==Progress notes==
 +
* What about simply hiding components (toolbars) that are not needed?
 
* Trick to hide all toolbars!
 
* Trick to hide all toolbars!
 
<pre>
 
<pre>
Line 36: Line 45:
 
...    c.hide()
 
...    c.hide()
 
</pre>
 
</pre>
 +
 +
Drawback: after restarting Slicer, the toolbars are still hidden.
  
 
==Background and References==
 
==Background and References==
 
<!-- Use this space for information that may help people better understand your project, like links to papers, source code, or data -->
 
<!-- Use this space for information that may help people better understand your project, like links to papers, source code, or data -->
 
SliceTracker code: https://github.com/SlicerProstate/SliceTracker
 
SliceTracker code: https://github.com/SlicerProstate/SliceTracker

Latest revision as of 15:10, 8 January 2016

Home < 2016 Winter Project Week < Projects < SliceTracker

Key Investigators

  • Christian Herz (BWH)
  • Andriy Fedorov (BWH)
  • Andras Lasso (Queens)

Project Description

Prostate biopsies can become a big challenge, especially when the prostate changed from pre-procedural to intra-procedural image acquisition. Motion and deformation of the prostate raises difficulties for positioning the biopsy needle at the right position. The registration module’s goal is to optimize the workflow and provide a solution, that is easy to use.

Objective Approach and Plan Progress and Next Steps
  • Slicer module implemented that allows the registration of the prostate
  • Use SliceTracker during prostate biopsies as a replacement to current approach
  • Present the module to interested members of the community
  • Get feedback about the workflow and usability
  • Work on the remaining issues
  • Discuss about migrating this module into a slicelet
  • Positive feedback for workflow and usability of the module
  • LumpNav is a slicelet example to follow
  • TODO:
    • Create an extension from that module and provide an appropriate example dataset
    • Integrate the z-frame and navigation component into the module

Progress notes

  • What about simply hiding components (toolbars) that are not needed?
  • Trick to hide all toolbars!
>>> w = slicer.util.mainWindow()
>>> for c in w.children():
...   if str(type(c)).find('ToolBar')>0:
...     c.hide()
Drawback: after restarting Slicer, the toolbars are still hidden.

Background and References

SliceTracker code: https://github.com/SlicerProstate/SliceTracker