MATLAB: Question on Image transformation

geometricImage Processing Toolboximwarpmatrixperspectiveprojective2dtransformation

Hey guys. I have a question on changing the perspective of an image. Using this resource: http://mopage.de/2011/10/perspective/ I found a way to calculate the transformation matrix, but how do I use this to create a new image with the change in perspective?
Thanks for the help!

Best Answer

Hi Mubeen,
If you have R2013a, you should look at the class projective2d and the function imwarp.
You can use projective2d to compute forward and inverse point transformations. You can use imwarp and projective2d together to form the resampled output image that is produced by applying a projective transformation.
If you are using previous versions of the Image Procesing Toolbox, you should use the analogous workflow with maketform('projective',___) and imtransform.
We refer the transformation you are referring to as a projective transformation in the Image Processing Toolbox.