Matlab像素和直方图距离

时间:2015-01-03 18:45:22

标签: matlab

是否有任何matlab函数执行以下操作: enter image description here

NxM是图像的尺寸。 I,j是像素值(红色为chanel 1,绿色为香奈儿2,蓝色为香奈儿3)。

1 个答案:

答案 0 :(得分:1)

您可以通过

计算第一个距离
d1 = sqrt(sum((A(:)-B(:)).^2));

和第二个

% Create histograms
hA = hist(A(:),255);
hB = hist(B(:),255);

% Calculate distance
d2 = sqrt(sum((hA-hB).^2));