Hi everyone,
I have a question about window control using python codes.
What are the possible functions to call in order to to toggle slice display in 3D using python code?
Thank you so much in advance!
Hi everyone,
I have a question about window control using python codes.
What are the possible functions to call in order to to toggle slice display in 3D using python code?
Thank you so much in advance!
You can toggle slice visibility like this:
sliceNode = getFirstNodeByClassByName("vtkMRMLSliceNode", "Red")
sliceNode.SetSliceVisible(True)
Thank you so much, Kyle!