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
Post a Comment