Feature matching display

Hi!
I am working on matching features between two images. Now I am trying to draw the matches I have obtained and for that I was reading this blogpost.
I guess the post assumes that both the images are of same size but in my situation:
size(img1)

(488, 650)

size(img2)

(650, 488)

I was wondering if it’s possible to draw the matches without resizing the images since I guess I would have to map the coordinates of the feature points again in that case.

This is what I tried to do. But I don’t think it is correct since the matches are obviously all over the place.

Thanks!

Anyone?
Would really appreciate some help.