python-图片横向拼接

import os
from PIL import Image
UNIT_SIZE = 220 # the size of image
TARGET_WIDTH = 6 * UNIT_SIZE
save_path = '/root/……cyclegan_6.0/web/result1/'
path = "/root/……cyclegan_6.0/web/images"
images = []  # all pic name
def pinjie():
    for img in os.listdir(path):
        images.append(img)
    if not os.path.exists(save_path):
        os.makedirs(save_path)
    for i in range(len(images)/6): # eyery 3 a group
        imagefile = []
        j = 0
        for j in range(6):
            imagefile.append(Image.open(path+'/'+images[i*6+j]))
        target = Image.new('RGB', (TARGET_WIDTH, UNIT_SIZE))  # width , height
        left = 0
        right = UNIT_SIZE
        for image in imagefile:
            target.paste(image, (left, 0, right, UNIT_SIZE))
            left += UNIT_SIZE
            right += UNIT_SIZE
            quality_value = 1000
        target.save(save_path+'out_{}.jpg'.format(i), quality=quality_value)
if __name__ == '__main__':
    pinjie()

拼接完结果图:


猜你喜欢

转载自blog.csdn.net/lemontree_summer/article/details/80886499
今日推荐