i dont know how to calculate the coorelation of corresponding pixels of the blocks that have the same value.
2 次查看(过去 30 天)
显示 更早的评论
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...
0 个评论
采纳的回答
Image Analyst
2013-3-31
What about this:
correlationImage = xcorr2(block53, block32);
11 个评论
Image Analyst
2013-4-3
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.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Computer Vision with Simulink 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!