Slice Intersection Thickness

Hi everyone!

Is there any way that I could increase the slice intersection thickness? Right now I have the default red, green, and yellow crosshairs on my CTs but they appear very thin and can be hard to see. Can those crosshairs be manually edited to be more thick? Thanks!

I’m assuming you may be using a higher DPI display such as a 4K or an Apple retina display.

@lassoan indicated that this could be edited with some simple coding.

@lassoan Could you provide a python example to change the slice intersection thickness? I can’t seem to get a display node object from a vtkMRMLSliceNode in python.

1 Like

You need to dig into how to get the slice display nodes, but in most cases this for example will set the red slice intersection thickness to 5 points:

getNode('vtkMRMLModelDisplayNode1').SetLineWidth(5)
1 Like