How can you performing imwarp about the center of an image, not the top left corner?

18 次查看(过去 30 天)
I am trying to transform a 2D image using an affine2D object (translation, rotation, and scale). I want to apply it about the center of the image and the output image to be the same size as the input image. When I used imwarp, it applies it at the top left corner. I did it as follows:
T = affine2d(H);
R = imref2d(size(img));
img2 = imwarp(img,T,'OutputView',R);
Can you please help?

采纳的回答

Alex Taylor
Alex Taylor 2016-4-7
编辑:Alex Taylor 2016-4-7
There are at least two ways to do this with IMWARP. One is to use a composite geometric transformation in which you pre and post multiply your intended transformation to shift the image to the origin (0,0), apply your affine operation, and then shift the image back to its original center.
A second, and I think easier way to do it, is to put your image into a non-default coordinate system where it is defined as being centered at the origin and then just apply your intended transformation. This approach is shown below.
A = imread('pout.tif');
Rin = imref2d(size(A))
Rin.XWorldLimits = Rin.XWorldLimits-mean(Rin.XWorldLimits);
Rin.YWorldLimits = Rin.YWorldLimits-mean(Rin.YWorldLimits);
out = imwarp(A,Rin,tform);
  1 个评论
Craig Russell
Craig Russell 2017-9-29
Just a point
Rin.XWorldLimits = Rin.XWorldLimits-2*mean(Rin.XWorldLimits);
Rin.YWorldLimits = Rin.YWorldLimits-2*mean(Rin.YWorldLimits);
Worked for me, unsure why but whatever.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Geometric Transformation and Image Registration 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by