I’m trying to figure out the schematic markings on the glass brain plots. I dug into the code for a while, but didn’t find where they are from. They don’t seem to line up with sulci, as I would expect.
Central sulcus
The long front, mostly vertical line would seem to be the central sulcus, but does not line up with the tissue maps for pre- and post-central gyri from the Harvard-Oxford atlas. Unknown markings designated with arrows (which is basically all of them).
fig = plt.figure(figsize=(20, 20))
display = plot_glass_brain(None, figure=fig)
display.add_overlay('harvardoxford-cortical_prob_Precentral Gyrus.nii.gz', alpha=0.8, cmap='Reds', threshold=30)
display.add_overlay('harvardoxford-cortical_prob_Postcentral Gyrus.nii.gz', alpha=0.8, cmap='Blues', threshold=30)
IFG
The two short vertical lines would seem to delineate the sulci beside pars opercularis and pars triangularis, but according to the HO atlas, they do not.
fig = plt.figure(figsize=(20, 20))
display = plot_glass_brain(None, figure=fig)
display.add_overlay('harvardoxford-cortical_prob_Inferior Frontal Gyrus, pars triangularis.nii.gz', alpha=0.8, cmap='Reds', threshold=30)
display.add_overlay('harvardoxford-cortical_prob_Inferior Frontal Gyrus, pars opercularis.nii.gz', alpha=0.8, cmap='Blues', threshold=30)
Second question: are there different markings available, or can I use my own illustrations with lines for the glass brain plots?
Thanks for any enlightenment you’d care to share