gpt4 book ai didi

python-3.x - Python 枕头 Gif 人工制品/背景

转载 作者:行者123 更新时间:2023-12-04 04:15:01 28 4
gpt4 key购买 nike

目标:最后的每一帧都应该有一个完整的 sudowoodo。任何不是 sudowoodo 的东西在 gif 中都应该是透明的(我也可以用白色)。我的最终目标是能够重新着色,所以我必须能够区分背景和口袋妖怪。

我正在使用请求从网站获取 gif,然后使用 pillow 获取帧。当我通过帧搜索时,伪影(主要是背景)干扰了我的处理方法。我用 https://ezgif.com/split检查它的外观。

我在我的拼贴画的处理范围周围放置了框架、处理方法和框,以帮助查看它应该如何堆叠(如下图所示)。我在底部放置了将显示重建帧的示例代码。

那么如何使用枕头正确地获得干净的镜框呢?


图片

注意:

  • 对于枕头框架索引 4, body 中有一条白线,框架索引 27 有绿色背景。并且多个帧的球体/ Twig 中缺少绿色。
  • 要让 ezgif.com 看到我发布的图片,您必须设置“忽略优化”,但我想要的最终照片是网站选项“使用前一帧的细节重绘每一帧”显示的内容。

使用的 Gif:https://play.pokemonshowdown.com/sprites/xyani/sudowoodo.gif

枕头结果:
Pillow Extracted Frames
Ezgif 的结果:
Websites extraction


代码

Python Versions
Python == 3.6.4
Pillow == 7.0.0
requests == 2.23.0

from PIL import Image, ImageDraw, ImageFont
from io import BytesIO
import requests

#Depends on the dispose_method and disposal_extent will process accordingly
def method_dispose(i, frames, previous_frame):
# 0 PIL = Overlay and pass
# 1 PIL = Overlay and return previous
# 2 PIL = Erase Overlay
new_frame = previous_frame.copy()
current_frame = frames.convert('RGBA')
new_frame.alpha_composite(current_frame, dest=frames.dispose_extent[0:2], source=frames.dispose_extent)
if frames.disposal_method is 0:
return new_frame, Image.new('RGBA', box=frames.size)
elif frames.disposal_method is 1:
return new_frame, new_frame.copy()
elif frames.disposal_method is 2:
draw = ImageDraw.Draw(previous_frame)
draw.rectangle(frames.dispose_extent, fill=(255, 255, 255, 0)) #fill white transparent
return new_frame, previous_frame.copy()

# Goes through the frames and pastes them next to each other then shows
def simpleCollage(frames, num_images_width : int = 5, num_images_height : int = 10):
width, height = frames.size
compilation = Image.new('RGBA', size=(width * num_images_width, height * num_images_height))
fnt = ImageFont.load_default().font
for i in range(frames.n_frames):
frames.seek(i)
the_frame = frames.convert('RGBA')
draw = ImageDraw.Draw(the_frame)
draw.rectangle(frames.dispose_extent, outline=(255,173,0,255))
draw.text((0,0), f"F{i}-M{frames.disposal_method}", font=fnt, fill=(255, 0, 0))
compilation.paste(the_frame, box=(width * int(i % num_images_width), height * int(i / num_images_width)))
if i == (num_images_width * num_images_height):
break;
compilation.show()

response = requests.get("https://play.pokemonshowdown.com/sprites/xyani/sudowoodo.gif")
frames = Image.open(BytesIO(response.content))
simpleCollage(frames)

width, height = frames.size
all_frames = []
pass_frame = Image.new('RGBA', size=frames.size)
for i in range(frames.n_frames):
frames.seek(i)
disp_frame, pass_frame = method_dispose(i, frames, pass_frame)
all_frames.append(disp_frame)

all_frames[0].save(fp="test.gif", format='GIF', save_all=True, append_images=all_frames[1:], optimize=False, duration=frames.info['duration'], loop=0)
simpleCollage(Image.open("test.gif"))

我用于处理方法的一些来源:

最佳答案

由于重复 .convert() 而导致的不良图像。要解决此问题,.seek(0) 需要放在 .convert() 之后。所以生成的代码应该是这样的:

for i in range(frames.n_frames):
frames.seek(i)
disp_frame, pass_frame = method_dispose(i, frames, pass_frame)
all_frames.append(disp_frame)
frames.seek(0) # <-- Added

关于python-3.x - Python 枕头 Gif 人工制品/背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60890497/

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