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

From NAMIC Wiki
Jump to: navigation, search
(added github link)
Line 25: Line 25:
 
*
 
*
 
|}
 
|}
 +
 +
==Progress notes==
 +
* Trick to hide all toolbars!
 +
<pre>
 +
>>> w = slicer.util.mainWindow()
 +
>>> for c in w.children():
 +
...  if str(type(c)).find('ToolBar')>0:
 +
...    c.hide()
 +
</pre>
  
 
==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 -->
 
See code [https://github.com/SlicerProstate/SliceTracker here]
 
See code [https://github.com/SlicerProstate/SliceTracker here]

Revision as of 16:25, 5 January 2016

Home < 2016 Winter Project Week < Projects < SliceTracker

Key Investigators

  • Christian Herz (BWH)
  • Andriy Fedorov (BWH)

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
  • Integrate the z-frame and navigation component into the module
  • 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

Progress notes

  • Trick to hide all toolbars!
>>> w = slicer.util.mainWindow()
>>> for c in w.children():
...   if str(type(c)).find('ToolBar')>0:
...     c.hide()

Background and References

See code here