First time here? Check out the FAQ!

Ask Your Question
0

Homography transformation + scale

asked Mar 21 '18

lock042 gravatar image

I have a transformation between 2 images. I've computed the homography matrix. Applying this mastrix with warpPerspective works well.

Now, before to apply warpPerspective, I want to resize the image by a factor 2 (in x and y) with resize(in, out, out.size(), 0, 0, interpolation); So I need to update H if I want the transformation be alright. I thought that doing

PSEUDO-CODE:
resize(in, out, out.size(), 0, 0, OPENCV_NEAREST) --> scaling by 2
H02 * 2;
H12 * 2;
warpPespective(in, out, H, OPENCV_BILINEAR)

was enough, but apparently not.

Doing it in one pass would be easy:

PSEUDO-CODE:
H02 *= 2;
H12 *= 2;

H00 *= 2;
H01 *= 2;
H10 *= 2;
H11 *= 2;

warpPespective(in, out, H, OPENCV_NEAREST);

But I don't want it because I want a different interpolation algorithm between the scale and the warpPespective. How the H transformation should be to match what I want ?

Preview: (hide)

Comments

2

Hi, this link should be helpful

VxW gravatar imageVxW (Mar 21 '18)edit

Oh gosh. This is exactly the same question. I'm so confused. Thank you, I will make some tests and will give you feedbacks. Thank you so much !!

lock042 gravatar imagelock042 (Mar 21 '18)edit

1 answer

Sort by » oldest newest most voted
0

answered Mar 21 '18

lock042 gravatar image

Works great, many thanks.

Preview: (hide)

Question Tools

2 followers

Stats

Asked: Mar 21 '18

Seen: 1,870 times

Last updated: Mar 21 '18