您好,登錄后才能下訂單哦!
具體代碼如下所示:
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實現(xiàn)圖片拼接的代碼,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網(wǎng)站的支持!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。