Finding the correlation coefficient between two images

11 views (last 30 days)
Can you please help me on how to find the correlation coefficient between two images? thanks

Answers (1)

Bjorn Gustavsson
Bjorn Gustavsson on 10 Jul 2019
You should be able to get the 2 x 2 correlation matrix this way:
ImgCorr = corrcoef(double(Im1(:)),double(Im2(:)));
From that you can take element 1,2 or element 2,1 as the correlation coefficient.
HTH

Categories

Find more on Image Processing Toolbox in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!