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

visual studio - vb.net filter binding source by time -

php - SPIP: From Tag directly to an article -

jquery - isAjaxRequest always return false -