我正在应用四层小波分解,但是

在重建相同的RGB图像时,它分为三个部分。代码如下
fullRecon = cAA{nLevel};
for iLevel = nLevel:-1:1,
fullRecon = idwt2(fullRecon,cHH{iLevel},cVV{iLevel},cDD{iLevel},'db1');
end
figure, imshow(uint8(fullRecon)),title('Full Recont Image');论坛不允许我上传任何图片,所以请按照下面的链接
http://in.mathworks.com/matlabcentral/answers/195203-reconstruct-the-decomposed-image
发布于 2015-03-30 10:37:20
试一试
fullRecon = reshape( fullRecon, size(fullRecon,1), [], 3 );https://stackoverflow.com/questions/29343959
复制相似问题