I have a list of 3D MRI images, and I would like to crop these images to the center so that I leave only the ROI, any suggestions on how to do that?
I tried the following code, but it returned the original size at the end... Any idea how to crop all the images with different dimensions to a center?
path1=(r"\*.*")
#ALL after resliced and resized
#path_2(r"C")
#Reading multiple files ED images for all pateints 1 to 72 and reslice them to 3D.
dimensions_img =np.zeros((len(glob.glob(path1)),3)) # this help to as counter
for i, img in enumerate(sorted(glob.glob(path1))):
print(img)
a= nib.load(img)
img_data = a.get_data()
#print(a.shape)
if len(a.shape)== 4:# if the shape is 4
resliced = img_data[:,:,:,0]
print(resliced.shape)
dimensions_img[i,:]=resliced.shape
#print(dimensions_img)
#print(resliced.shape)
#dimensions_img[i,:]=resliced.shape
#print(dimensions_img)
#new_dim = np.max(dimensions_img,axis=0).astype(int)
#center = (new_dim/2).astype(int)
#new_image_zeros[int(center[0] - resliced.shape[0]/2):int(resliced.shape[0]/2+center[0]),int(center[1] - resliced.shape[1]/2):int(resliced.shape[1]/2+center[1]),int(center[2] - resliced.shape[2]/2):int(resliced.shape[2]/2+center[2])] = resliced
You might try this function and loop over your 3D MRI volumes to apply it.