As a follow-up from this question regarding SLIC segmentation in 2D, I was wondering whether there is any method or technique to visualise images in 3D?
Something similar to the image below from this paper.
To give some more clarity of my current process, I have 3D T2 MRI images which are NIfTI (.nii.gz
) files. I load them and apply SLIC segmentation as follows:
img = sitk.ReadImage(img_path)
slic = sitk.SLICImageFilter()
seg = slic.Execute(img)
My original images look like this: