matlab - difference between two images -


on matlab have 2 bin image. can computing difference of gray scale pixel pixel , show on histogram? (the images have same size)

you may consider imshowpair . display pair of grayscale images.

a = imread('pix.tif'); b = imrotate(a,5,'bicubic','crop');  imshowpair(a,b,'diff'); 

other method described on here. comparing 2 image using histogram


Comments

Popular posts from this blog

Android layout hidden on keyboard show -

google app engine - 403 Forbidden POST - Flask WTForms -

c - Why would PK11_GenerateRandom() return an error -8023? -