Percent Difference between two images

6 views (last 30 days)
Marina Ghobrial
Marina Ghobrial on 17 May 2021
Answered: Image Analyst on 17 May 2021
What is the code to find the percent differnece between two images that are imfused. They are not the same matrix. help please

Answers (1)

Image Analyst
Image Analyst on 17 May 2021
Perhaps
pctImage = imabsdiff(image1, image2) ./ double(image1);
meanPct = mean2(pctImage);

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!