Hi,
I am quite new to Matlab. I am trying to do a projective transform from one image to another.
I could load the image
I = imread('img1.pgm');
Then created the projective matrix
h= [ a b c; d e f; g h i];
^ this is a projective transform matrix
Then created the transform
tform =...