문제

I have a complex image I (an nxm array of complex numbers). I noticed that imwarp accepts complex images as input.

So this code:

J=imwarp(I, tform, 'linear');

will produce an output, that, on visual inspection seems to make sense.

But I could't find any information on how exactly the interpolation of the pixel values was done. Does anyone know about it or could point out documentation?

Thanks!

도움이 되었습니까?

해결책

The interp option uses the same mechanism as it is in regular interp1, interp2, ....etc.

With a complex image in imwarp, interpolation operates individually on the real and imaginary parts separately.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top