I was having two MRI slices,aim was to interpolate a third slice
inbetween.
I performed watershed segmentation for it,then did Delaunay
Triangulation over both segmented slices.
Then..found nearest neighbourhood points in both 2D slices.Now aim is
to find 3rd slice points,which i can interpolate using points obtained
form above two slices.
But but...problem is..both of them have unequal points...
How shud I now go ahead !!
Any help regarding this will be really appreciable
Thanks in advance
Regards
Adi
Try this
I(:,:,1) =imread('mri.tif',13);
I(:,:,2) =imread('mri.tif',14);
I = double(I);
J = interp3(I);
HTH
Vihang