具体代码如下所示:
import os
from PIL import Image
UNIT_SIZE = 220 # the size of image
save_path = '/root/group-dia/zxb/Code-/lip-CycleGAN-and-pix2pix-master/checkpoints/lip_cyclegan_6.0/web/result/out'
path = "/root/group-dia/zxb/Code-/lip-CycleGAN-and-pix2pix-master/checkpoints/lip_cyclegan_6.0/web/images"
images = []
def pinjie(images):
for i in range(len(images) / 6):
target = Image.new('RGB', (UNIT_SIZE*3, UNIT_SIZE*2)) # result is 2*3
leftone = 0
lefttwo = 0
rightone = UNIT_SIZE
righttwo = UNIT_SIZE
for j in range(6):
if(j <= 2):
target.paste(images[j + i*6], (leftone, 0, rightone, UNIT_SIZE))
leftone += UNIT_SIZE
rightone += UNIT_SIZE
else:
target.paste(images[j + i*6], (lefttwo, UNIT_SIZE, righttwo, UNIT_SIZE*2))
lefttwo += UNIT_SIZE
righttwo += UNIT_SIZE
quality_value = 500
target.save(save_path + '{}.png'.format(i), quality=quality_value)
if __name__ == '__main__':
for img in os.listdir(path):
images.append(Image.open(os.path.join(path, img)))
print len(images)
pinjie(images)
总结
以上所述是小编给大家介绍的Python实现图片拼接的代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!
继续阅读与本文标签相同的文章
上一篇 :
推荐一款接口 API 设计神器!
下一篇 :
好消息!C++程序员也能用上NumPy了
-
微博:用户反馈张雨晗帐号刷数据 已暂停商业接单功能
2026-05-15栏目: 教程
-
布局AR野心的起点 Bose Frames智能蓝牙音频眼镜体验
2026-05-15栏目: 教程
-
已删除的短信在哪里找?iPhone短信恢复方法
2026-05-15栏目: 教程
-
5G城市,智慧军运!天河机场打造华中首个5G全覆盖机场
2026-05-15栏目: 教程
-
三一筑工亮相第四届BIM技术应用与建筑工业化论坛,核心技术获业界肯定!
2026-05-15栏目: 教程
