使用SVD的RGB图像压缩

时间:2018-12-12 17:16:21

标签: matlab image-processing image-compression

因此,我尝试使用SVD进行图像压缩,但是我的代码有错误。我已经尝试过查找,但是解决方案不适用于我的情况。

home;
clear all;

I=imread("inputimg.jpg");
I = double(I);
Ir = I(:,:,1);
Ig = I(:,:,2);
Ib = I(:,:,3);

[Ur, Sr, Vr] = svd(Ir,'econ');
[Ug, Sg, Vg] = svd(Ig,'econ');
[Ub, Sb, Vb] = svd(Ib,'econ');

nrows = size(I)(1);
ncols = size(I)(2);

nmodes = 30;

Ur1 = Ur(1:nrows,1:nmodes);
Sr1 = Sr(1:nmodes,1:nmodes);
Vr1 = Vr(1:ncols,1:nmodes);

Ug1 = Ug(1:nrows,1:nmodes);
Sg1 = Sg(1:nmodes,1:nmodes);
Vg1 = Vg(1:ncols,1:nmodes);

Ub1 = Ub(1:nrows,1:nmodes);
Sb1 = Sb(1:nmodes,1:nmodes);
Vb1 = Vb(1:ncols,1:nmodes);


red = Ur1*Sr1*(Vr1');
green = Ug1*Sg1*(Vg1');
blue = Ub1*Sb1*(Vb1');

red = uint8(red);
green = uint8(green);
blue = uint8(blue);

%Isvd = zeros(nrows,ncols,3);
%Isvd(:,:,1) = red;
%Isvd(:,:,2) = green;
%Isvd(:,:,3) = blue;
Isvd = cat(3,red,green,blue);

imwrite(Isvd,"outputimg.jpg");

我在第14行,第9列出现以下错误

()-索引必须出现在索引表达式的最后。

1 个答案:

答案 0 :(得分:1)

就像@beaker在其评论中指出的那样,nrows = size(I)(1);在Matlab中无效(有趣的是,在八度中)。

将其合并为一个语句,例如nrows = size(I,1)