SlicerQR Development

@jamesobutler @lassoan @pieper @jcfr

Thank you @jamesobutler. Pleased to meet you. Yes, I am using the Slicer Custom App framework, here is a picture of what I mean by reference markers. Also, I need to lighten up the background colors of the textboxes containing the slice locations in the upper right corner of each image pane. Or better still, make the text white.

My managers are saying that the reference markers are too dark and are sometimes difficult to see. I’m just learning how to program Slicer. Here is the Python code that creates the reference markers…

Here’s some code setting them visible. Is there a reference manual somewhere, or a way to discover available Slicer methods for certain objects? Is there an IDE with intellisense?

  def setReferenceMarkersVisible(visible):
         for sliceLogic in slicer.app.applicationLogic().GetSliceLogics():
              sliceLogic.GetSliceCompositeNode().SetSliceIntersectionVisibility(visible)
              sliceLogic.GetSliceNode().SetWidgetVisible(visible)