Percent Difference between two images

조회 수: 11 (최근 30일)
Marina Ghobrial
Marina Ghobrial 2021년 5월 17일
답변: Image Analyst 2021년 5월 17일
What is the code to find the percent differnece between two images that are imfused. They are not the same matrix. help please

답변 (1개)

Image Analyst
Image Analyst 2021년 5월 17일
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!

Translated by