I calculate the homography matrix of an image using OpenCV's findHomography and then I warp the image using warpPerspective function. Now I want to use the same homography matrix for a scaled version of the image (the scaled version has the same aspect ratio, and the image is scaled around it's center). The problem is similar to "opencv update homography matrix to fit on an image double the size" which does not seem to have a correct answer.
Is it possible to apply a scaling factor to an existing homography matrix?
Regards