help > RE: Show all four sagittal images at once (medial LH, RH, and lateral LH, RH)
Dec 10, 2020  12:12 PM | Chris Rorden
RE: Show all four sagittal images at once (medial LH, RH, and lateral LH, RH)
With MRIcroGL you could create two renderings. Choose a template without a cerebellum if you do not want it...

import gl
gl.resetdefaults()
gl.backcolor(255, 255, 255)
#open background image
gl.loadimage('spm152')
#open overlay: show positive regions
gl.overlayload('spmMotor')
gl.minmax(1, 4, 4)
gl.opacity(1,50)
#open overlay: show negative regions
gl.overlayload('spmMotor')
gl.minmax(2, -4, -4)
gl.colorname (2,"3blue")
gl.colorbarposition(0)
#"a"xial, "c"oronal and "s"agittal "r"enderings
gl.clipazimuthelevation(0.5, 90, 0)
gl.mosaic("S R 0; S R -0");
gl.savebmp("LH.png")
gl.clipazimuthelevation(0.5, 270, 0)
gl.mosaic("S R 0; S R -0");
gl.savebmp("RH.png")
Attachment: MRIcroGL.png

Threaded View

TitleAuthorDate
Jamal Williams Dec 10, 2020
Chris Rorden Dec 11, 2020
RE: Show all four sagittal images at once (medial LH, RH, and lateral LH, RH)
Chris Rorden Dec 10, 2020