图像融合 skimage

图像融合skimage

图像融合

##拉普拉斯金字塔

In CollageCreate function, there is a Fusion class object. The Fusion class will get the image folder name and contains different kinds of methods to process the images. You can put different numbers of images into the folder and it will process all these images and output a fusion image. In the class , it will first load the images and then calculate all their Laplacian pyramids. I use the pyramids to fuse the images in multiscale layers. Finally , I upsample the fused Laplacian pyramids and use all of them to create a new fusion type. So far, the fusion image is created and I plot this image in the end.

import numpy as np
import matplotlib.pyplot as plt
from skimage import data, transform, color,exposure, img_as_float, io
import os


class Fusion(object):
    def __init__(self,AddressofFolder):
        self.folder_name = AddressofFolder
        self.n_images = None
        self.images = self.load_images(self.folder_name)
        self.pyramids = self.get_laplacian()
        self.ls = None
        self.stack_ls()

    def load_images(self,path):
        names = os.listdir(path)
        self.n_images = len(names)
        images = [io.imread(os.path.join('images',n)) for n in names]
        new_ = []
        for i in images:
            new_.append(transform.resize(i,(600,600,3)))
        return new_

    def get_laplacian(self):
        ls = []
        for i in self.images:
            lp = list(transform.pyramid_laplacian(i, downscale=2, multichannel=True))
            ls.append(lp)
        return ls

    def stack_ls(self):
        layers = len(self.pyramids[0])
        n1 = self.n_images//2
        n2 = self.n_images - n1
        ls1_imgs = []
        for l in range(0,layers):
            temp = self.pyramids[0][l]
            for i in range(1,n1):
                temp = np.hstack((temp[:,:],self.pyramids[i][l][:,:]))
            ls1_imgs.append(temp)
        #[print(i.shape) for i in ls1_imgs]
        ls1_shape = [l.shape for l in ls1_imgs]
        for i in range(n1,self.n_images):
            for l in range(0,layers):
                if i!=self.n_images-1:
                    self.pyramids[i][l] = transform.resize(self.pyramids[i][l],(self.pyramids[i][l].shape[0],max(1,ls1_shape[l][1]//n2)))
                else:
                    w = ls1_shape[l][1] - ls1_shape[l][1]//n2*(n2-1)
                    #h = ls1_shape[l][0] - ls1_shape[l][0]//n2*(n2-1)
                    self.pyramids[i][l] = transform.resize(self.pyramids[i][l],(self.pyramids[i][l].shape[0],w))
        [print(i[0].shape) for i in self.pyramids]
        ls2_imgs = []
        for l in range(0,layers):
            temp = self.pyramids[n1][l]
            for i in range(n1+1,self.n_images):
                temp = np.hstack((temp[:,:],self.pyramids[i][l][:,:]))
            ls2_imgs.append(temp)

        self.ls = []
        [print(i.shape) for i in ls1_imgs]
        [print(i.shape) for i in ls2_imgs]
        for l1,l2 in zip(ls1_imgs,ls2_imgs):
            l = np.vstack((l1[:,:],l2[:,:]))
            self.ls.append(l)
        print(len(self.ls))
        [print(i.shape) for i in self.ls]

    def sfusion(self):
        new_image = self.ls[-1]
        for i in range(len(self.ls) - 1):
            temp_img = self.ls[len(self.ls) - 2 - i]
            # gs_tmp = GS[len(LS)-2-i]
            # z = temp_img.shape[0]
            # o = temp_img.shape[1]
            # new_image = transform.resize(new_image,(rows,cols))
            new_image = transform.rescale(new_image, 2, multichannel=True)
            temp_img = transform.resize(temp_img, (new_image.shape[0], new_image.shape[1]))
            # gs_tmp = transform.resize(gs_tmp, (new_image.shape[0], new_image.shape[1]))
            new_image = new_image + temp_img
        self.fusion_image = new_image
        plt.imshow(new_image*3)
        plt.show()

def CollageCreate(AddressofFolder):
    f = Fusion(AddressofFolder)
    print([i.shape for i in f.images])
    f.sfusion()

if __name__ == '__main__':
    CollageCreate('images')





代码结果示例

在这里插入图片描述

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值