加密图像相邻像素的相关性

时间:2016-10-05 04:22:15

标签: image matlab image-processing correlation pixels

我有以下提到的公式来找到相邻像素的相关性。

a=image;
a1=a(:,1:end-1);
a2=a(:,2:end);
cor=corrcoef(double(a1(:)),double(a2(:)));

如何找到相邻像素的水平,垂直和对角线相关性?

如果这个公式是正确的,那么我应该如何对这三种类型进行更改?

0 个答案:

没有答案