i dont know how to calculate the coorelation of corresponding pixels of the blocks that have the same value.

1 view (last 30 days)
i've divided the image into discrete blocks and then i've calculated the corresponding mean value of each and every block. the mean value of some of the blocks are same or some have different value i.e block 32,43 and 65 have same value, block 67,89 and 12 have same value.
now i want to calculate the coorelation of corresponding pixels of the blocks that have the same value i.e.
the correlation between the first pixels of 32,43 and 65 block.....then correlation among second pixels of these blocks and so on....then avg these
values......
as i m novice i dont know how to calculate the correlation of corresponding pixels of the block...

Accepted Answer

Image Analyst
Image Analyst on 31 Mar 2013
What about this:
correlationImage = xcorr2(block53, block32);
  11 Comments
Image Analyst
Image Analyst on 3 Apr 2013
I'm sorry I can't spend as much time on your project as you'd want me to. I don't know how you get your blocks. Maybe you used mat2cell or something. But however you got them, you have to get them into two arrays so that you can pass them into xcorr2(). Whether that is by pulling them out of a cell in a cell array or pulling them out of a plane of a 3D image, I don't know. Do whatever you have to do to get the two sub-images. I don't have time to figure that part out for you. Sorry.

Sign in to comment.

More Answers (0)

Categories

Find more on Code Generation 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!