Filter löschen
Filter löschen

How can I made a correlation between two images of the same size?

64 Ansichten (letzte 30 Tage)
Biza Ferreira
Biza Ferreira am 28 Jun. 2016
Beantwortet: Ranjit Shrestha am 31 Jan. 2022
Hello, I have a small problem I wanted to build a table with the correlation of 10 images values all with the same size.

Antworten (3)

Muhammad Usman Saleem
Muhammad Usman Saleem am 28 Jun. 2016
it is very simple to find correlation between two images of same size.
a=imread('firstimage.tif');
b=imread('secondimage.tif');
if you mean correlation coefficient, you can program manually the function or use corr2 :
corr2(a,b); % returns a scalar
try to read these links also helpful for you
https://www.mathworks.com/matlabcentral/answers/63796-correlation-between-the-two-images
  1 Kommentar
Anand Karnam
Anand Karnam am 4 Apr. 2020
I got scalar as output too. But if-loop is giving an error. The output should be between 1 and 2.

Melden Sie sich an, um zu kommentieren.


Biza Ferreira
Biza Ferreira am 29 Jun. 2016
Bearbeitet: Biza Ferreira am 29 Jun. 2016
can you help me to solve this correlation problem using the expression
I have a problem in implementing this with MATLAB
  1 Kommentar
Muhammad Usman Saleem
Muhammad Usman Saleem am 29 Jun. 2016
I think it is formula for cross correlation? If yes matlab has created build in function cross2(x,y) for correlation. Read my answer above please

Melden Sie sich an, um zu kommentieren.


Ranjit Shrestha
Ranjit Shrestha am 31 Jan. 2022
what if we have more than two images? I mean a sequence of images.

Kategorien

Mehr zu Convert Image Type finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by