python小波变换_python中基于小波变换的图像融合

该博客介绍了如何使用Python和PyWavelets库进行小波变换来融合图像。通过读取并调整大小的两幅图像,对每幅图像进行小波分解,然后根据融合方法(平均、最小或最大值)结合系数,最后将融合后的系数重构回图像。最终展示融合后的图像。
摘要由CSDN通过智能技术生成

然后在图像上运行以下代码:import pywt

import cv2

import numpy as np

# This function does the coefficient fusing according to the fusion method

def fuseCoeff(cooef1, cooef2, method):

if (method == 'mean'):

cooef = (cooef1 + cooef2) / 2

elif (method == 'min'):

cooef = np.minimum(cooef1,cooef2)

elif (method == 'max'):

cooef = np.maximum(cooef1,cooef2)

else:

cooef = []

return cooef

# Params

FUSION_METHOD = 'mean' # Can be 'min' || 'max || anything you choose according theory

# Read the two image

I1 = cv2.imread('i1.bmp',0)

I2 = cv2.imread('i2.jpg',0)

# We need to have both images the same size

I2 = cv2.resize(I2,I1.shape) # I do this just because i used two random images

## Fusion algo

# First: Do wave

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值