Registering T1 image with AAL atlas intensity values changes

I performed following steps

  1. register T1 image to MNI space and compute the transformation matrix
  2. then take the inverse of that matrix
  3. apply registration using inverse matrix to AAL atlas and tranform it into my subject space (T1 space)
  4. now i am overlapping mask (tumor mask) with this atlas based image
    tumor mask has three different labels. but in AAL atlas space intensity values has been changed so how i can get three different ROI based on tumor mask?

I suspect you need to use nearest neighbour interpolation in step 3. (-interp nearest option for mrtransform).

I tried it by using nn interpolation too. but the result is same.

I think there may actually be two separate questions embedded in one statement:

  1. transform it into my subject space … intensity values has been changed

  2. mask (tumor mask) … how i can get three different ROI based on tumor mask?

@maxpietsch’s response addresses specifically point 1: If you have an image that contains unique integer labels, you need to use nearest-neighbour interpolation at the re-gridding step in order to preserve those values.

For point 2, it sounds like you have a single input parcellation image, containing more than one unique integer label, and you instead wish to have multiple mask images, where each image contains only those voxels corresponding to one specific parcel index. If this is the case, this is a separate step to the rest of the question, so got lost in communication. What you want in this case is the -eq operator in mrcalc. E.g. If you want a mask image that contains only those voxels where the value in the parcellation image is 3:

mrcalc tumour_parcels.mif 3 -eq tumour_index_3.mif

Rob

Thank you so much Rob. Issue has been solved.