mapping of an image on another image :how to do in matlab? -
i have image ,imagea (cropped image) how map on imageb @ top left... (x,y) coordinates of 1 image maps on (x,y) coordinates of other image.
i presume want overwrite top left corner of b a
[m, n, ~] = size(imagea); imageb(1:m, 1:n, :) = imagea;
remember take care number of colour channels.
Comments
Post a Comment