Hello SimpleITK community,
I am new to this community and python image processing using SimpleITK in general, so i hope that i have asked the question in the correct way, and i apologise if my question is trivial.
As part of my masters project, i have been provided with a dataset of PET/CT images, with corresponding contours delineating prostate lesions. I have successfully imported the PET and CT images into python, and used the following code to resample the PET images to the same spacing and size as the CT images.
image_dirs = [data_path_pet, data_path_ct, data_path_mask]
def read_first_series_in_dir(dir):
series_reader = sitk.ImageSeriesReader()
series_IDs = sitk.ImageSeriesReader.GetGDCMSeriesIDs(dir)
series_file_names = sitk.ImageSeriesReader.GetGDCMSeriesFileNames(dir, series_IDs[0])
series_reader.SetFileNames(series_file_names)
return series_reader.Execute()
images = [read_first_series_in_dir(image_dir) for image_dir in image_dirs]
pet_image = images[0]
ct_image = images[1]
mask_image = images[2]
pet_image_resampled = sitk.Resample(pet_image, ct_image)
Following this, i am left with all three images (PET,CT and mask) with spacing and size as follows:
image size: (512, 512, 221)
image spacing: (1.5234375, 1.5234375, 5.0)
This is great, but the ultimate goal is to feed all these images into a Machine Learning model, and so i would like to resample all PET/CT/Mask combinations to an isotropic spacing of 1x1x1. I have attempted to do this with the following code, but i continue getting a type error with respect to the ResampleImageFilter. The code i am using goes as follows:
images_resampled = [pet_image_resampled, ct_image, mask_image]
dimension = images_resampled[1].GetDimension()
reference_physical_size = np.zeros(dimension)
for img in images_resampled:
reference_physical_size[:] = [(sz-1)*spc if sz*spc>mx else mx for sz,spc,mx in zip(img.GetSize(), img.GetSpacing(), reference_physical_size)]
reference_origin = np.zeros(dimension)
reference_direction = np.identity(dimension).flatten()
reference_size_x = 512
reference_spacing = [reference_physical_size[0]/(reference_size_x-1)]*dimension
reference_size = [int(phys_sz/(spc) + 1) for phys_sz,spc in zip(reference_physical_size, reference_spacing)]
reference_image = sitk.Image(reference_size, images_resampled[0].GetPixelIDValue())
reference_image.SetOrigin(reference_origin)
reference_image.SetSpacing(reference_spacing)
reference_image.SetDirection(reference_direction)
reference_center = np.array(reference_image.TransformContinuousIndexToPhysicalPoint(np.array(reference_image.GetSize())/2.0))
final_data = []
for img in images_resampled:
# Transform which maps from the reference_image to the current img with the translation mapping the image
# origins to each other.
transform = sitk.AffineTransform(dimension)
transform.SetMatrix(img.GetDirection())
transform.SetTranslation(np.array(img.GetOrigin()) - reference_origin)
# Modify the transformation to align the centers of the original and reference image instead of their origins.
centering_transform = sitk.TranslationTransform(dimension)
img_center = np.array(img.TransformContinuousIndexToPhysicalPoint(np.array(img.GetSize())/2.0))
centering_transform.SetOffset(np.array(transform.GetInverse().TransformPoint(img_center) - reference_center))
centered_transform = sitk.Transform(transform)
centered_transform.AddTransform(centering_transform)
# Set all the output image parameters
resampler = sitk.ResampleImageFilter()
resampler.SetReferenceImage(reference_image)
resampler.SetDefaultPixelValue(img.GetPixelIDValue)
resampler.SetTransform(centered_transform)
resampler.SetSize(reference_image.GetSize())
resampler.SetOutputSpacing(reference_image.GetSpacing())
resampler.SetOutputOrigin(reference_image.GetOrigin())
resampler.SetOutputDirection(reference_image.GetDirection())
resampler.SetInterpolator(sitk.sitkLinear)
resampled_img = resampler.Execute(img)
final_data.append(resampled_img)
Can anyone offer any suggestions as to why what i am doing is not working, and/or if there is a different/easier method of resampling these images to [1,1,1]?