forked from AIM-Harvard/pyradiomics
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathresampleMask.py
32 lines (25 loc) · 1.29 KB
/
resampleMask.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
"""
This script is an example of how a mask image can be resampled to the geometry of a reference image. This enables the
a mask that has been generated on one image, to be used for feature extraction of another image. Please note that this
still requires the mask to have a similar physical space as the reference image.
This script can be used directly from the command line by calling ``python resampleMask.py <args>``, where <args> are
the reference image, mask to resample and a filename to store the result (the resampled mask).
"""
import argparse
import SimpleITK as sitk
parser = argparse.ArgumentParser()
parser.add_argument('image', metavar='Image', help='Reference image to resample the mask to')
parser.add_argument('mask', metavar='Mask', help='Input mask to resample')
parser.add_argument('resMask', metavar='Out', help='Filename to store resampled mask')
def main():
args = parser.parse_args()
image = sitk.ReadImage(args.image)
mask = sitk.ReadImage(args.mask)
rif = sitk.ResampleImageFilter()
rif.SetReferenceImage(image)
rif.SetOutputPixelType(mask.GetPixelID())
rif.SetInterpolator(sitk.sitkNearestNeighbor)
resMask = rif.Execute(mask)
sitk.WriteImage(resMask, args.resMask, True) # True enables compression when saving the resampled mask
if __name__ == '__main__':
main()