gpt4 book ai didi

image - 如何阅读带有 alpha channel 的动画 gif

转载 作者:太空宇宙 更新时间:2023-11-03 19:10:17 29 4
gpt4 key购买 nike

在 MATLAB 中使用 .gif 动画进行一些测试时,我意识到我无法以某种方式读取 gif 的透明度。

例子:

enter image description here

(Original source of the gif)

如果我这样做

[img,cmap]=imread('Finnandjake.gif');

img 是 4D,具有冗余的第 3 维(很奇怪)。压缩后 (img=squeeze(img);),如果我显示它 (imshow(img(:,:,30),cmap)):

enter image description here

透明度消失了,使用图像中的另一种颜色作为背景,从而删除了特征。然而

[img,cmap,alpha]=imread('Finnandjake.gif');

返回一个空的alpha。显然alpha的信息在图像的某处,我如何在MATLAB中读取它?

最佳答案

/更新:我在 MATLAB file exchange 提供了代码.发布的版本与 OCTAVE 兼容,并附带一些文档。


我想到了这个解决方案。返回参数是堆叠图像、颜色图和与透明度对应的索引。

%do not use, instead use: http://www.mathworks.com/matlabcentral/fileexchange/55693-transparentgifread-filename-
function [stack,map,transparent]=transparentGifRead(filename)
if ~exist(filename,'file')
error('file %s does not exist',filename);
end
info=imfinfo(filename);
%Check if color map for all frames is the same
if any(any(any(diff(cat(3,info.ColorTable),[],3))))
error('inconsistent color map')
else
map=info(1).ColorTable;
end
%Check if transparent color for all frames is the same
if any(diff([info.TransparentColor]))
error('inconsistent transparency information')
else
transparent=info(1).TransparentColor-1;
end
import java.io.*
str = javax.imageio.ImageIO.createImageInputStream(java.io.File(filename));
t = javax.imageio.ImageIO.getImageReaders(str);
reader = t.next();
reader.setInput(str);
numframes = reader.getNumImages(true);
for imageix = 1:numframes
data = reader.read(imageix-1).getData();
height = data.getHeight();
width = data.getWidth();
data2 = reader.read(imageix-1).getData().getPixels(0,0,width,height,[]);
if imageix == 1
stack=zeros(height,width,1,numframes,'uint8');
end
%row major vs column major fix
stack(:,:,1,imageix) = reshape(data2,[width height]).';%'
end
str.close();
end

将透明像素着色为绿色的一些演示代码:

[stack,map,transparent]=transparentGifRead('tr.gif');
map(transparent+1,:)=[0,1,0] %offset 1 because uint8 starts at 0 but indices at 1
for frame=1:size(stack,ndims(stack))
imshow(stack(:,:,frame),map);
pause(1/25);
end

关于image - 如何阅读带有 alpha channel 的动画 gif,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34970064/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com