使白色背景透明png matlab

时间:2015-04-15 20:57:42

标签: image matlab picturebox imread

我正在尝试删除我从我创建的代码中获取的png图片上的白色背景。这是我得到的图片: enter image description here

我想让白色背景透明,因为我想要使用imfuse组合这些图像中的几个。

我所做的就是这个(我的照片名为'A1.png'):

A1=imread('A1.png');
D=zeros(size(A1));
D(A1==255) =1;
imwrite(A1,'A11.png','alpha',D);

但是我收到这样的错误 使用writepng> parseInputs时出错 (第349行) 'alpha'的值无效。 预期输入为829x600 当它的实际大小为829x600x3时。

829x600x3 uint8是A1的大小。我明白我需要摆脱x3的事情。但我不知道是不是在我的代码中保存图片或更早。

你们有什么想法?

3 个答案:

答案 0 :(得分:2)

您只需创建一个较小维度的D即可。这是代码

D = zeros( size(A(:,:,1)) );
D( all( A==255, 3 ) ) = 1; 
imwrite(A,'A11.png','alpha',D);

答案 1 :(得分:0)

我是这样做的。我有一个没有alpha通道的png,这就是为什么我很难使用上面提到的代码使它变得透明。

我设法通过首先添加Alpha通道然后将其重新读入并使用上面的代码来使其透明。

[RGBarray,map,alpha] = imread('image1.png'); % if alpha channel is empty the next 2 lines add it

imwrite(RGBarray, 'image1_alpha.png', 'png', 'Alpha', ones(size(RGBarray,1),size(RGBarray,2)) )
[I,map,alpha] = imread('image1_alpha.png');

I2 = imcrop(I,[284.5 208.5 634 403]);
alpha = imcrop(alpha,[284.5 208.5 634 403]);

alpha( all( I2==255, 3 ) ) = 1; 
imwrite(I2,'image1_crop.png','alpha',alpha);

答案 2 :(得分:0)

以下MATLAB代码可以删除白色背景(即将数据写入具有透明背景的新图像):

% name the input and output files
im_src = 'im0.png';
im_out = 'out.png';

% read in the source image (this gives an m * n * 3 array)
RGB_in = imread( im_src );
[m, n] = size( RGB_in(:,:,1) );

% locate the pixels whose RGB values are all 255 (white points ? --to be verified)
idx1 = ones(m, n);
idx2 = ones(m, n);
idx3 = ones(m, n);
idx1( RGB_in(:,:,1) == 255 ) = 0;
idx2( RGB_in(:,:,2) == 255 ) = 0;
idx3( RGB_in(:,:,3) == 255 ) = 0;

% write to a PNG file, 'Alpha' indicates the transparent parts
trans_val = idx1 .* idx2 .* idx3;
imwrite( RGB_in, im_out, 'png', 'Alpha', trans_val );

Voilà,希望有所帮助!