Clear Filters
Clear Filters

how to compare images in a group?

1 view (last 30 days)
i have 10 images in a group. i have to compare 1st image with 2nd using correlation. then i have to compare 2nd image with 3rd image. then i have to compare 3rd image with 4th . similarly it goes on till 10. how to achieve this?
  2 Comments
Yvan N.
Yvan N. on 24 Apr 2019
Pleaae how to do this correlation?
Can you share with me the correlation code ?
Image Analyst
Image Analyst on 24 Apr 2019
See attached demo on normalized cross correlation.

Sign in to comment.

Accepted Answer

Image Analyst
Image Analyst on 3 Mar 2013
for k1 = 1 : 10
for k2 = k1 : 10
% Do the correlation
end
end
  2 Comments
Sivakumaran Chandrasekaran
Hi Image Analyst !! if its a matrix means, i can give the range from 1 to 10. myself having 10 images.. how can we mention that k=first image: tenth image
Image Analyst
Image Analyst on 3 Mar 2013
Not sure what you mean. I can mention that because I did. Look at the first for loop statement where k1 goes from 1 to 10. Then inside your loop you just read in your two images (for k1 and k2) and do the correlation or whatever you want to do. See the FAQ: http://matlab.wikia.com/wiki/FAQ#How_can_I_process_a_sequence_of_files.3F

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!