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

Popular posts from this blog

objective c - Change font of selected text in UITextView -

php - Accessing POST data in Facebook cavas app -

c# - Getting control value when switching a view as part of a multiview -