1 简介
The energy compaction and multiresolution properties of wavelets have made the image fusion successful in combining important features such as edges and textures from source images without introducing any artifacts for context enhancement and situational awareness. The wavelet transform is visualized as a convolution of wavelet filter coefficients with the image under consideration and is computationally intensive. The advent of lifting-based wavelets has reduced the computations but at the cost of visual quality and performance of the fused image. To retain the visual quality and performance of the fused image with reduced computations, a discrete cosine harmonic wavelet (DCHWT)-based image fusion is proposed. The performance of DCHWT is compared with both convolution and lifting-based image fusion approaches. It is found that the performance of DCHWT is similar to convolution-based wavelets and superior/similar to lifting-based wavelets. Also, the computational complexity (in terms of additions and multiplications) of the proposed method scores over convolution-based wavelets and is competitive to lifting-based wavelets.
2 部分代码
function [jhist_out]=joint_hist_fn(x1,x2)%%% joint_hist_fn: Computes the joint histogram of Images x1 and x2.%%%%%% jhist_out=joint_hist_fn(x)%%% Example:%%% Y = joint_hist_fn(X); %% takes a pair of images x1 & x2 of equal size and returns the 2d joint histogram.%%%%%% Author : B. K. SHREYAMSHA KUMAR%%% Created on 21-10-2011.%%% Updated on 21-10-2011.[p,q]=size(x1);jhist_out=zeros(256,256);for ii=1:pfor jj=1:qjhist_out(x1(ii,jj)+1,x2(ii,jj)+1)=jhist_out(x1(ii,jj)+1,x2(ii,jj)+1)+1;endend
3 仿真结果



4 参考文献
[1]柏春岚, 刘豪. 基于小波变换的图像融合及其MATLAB实现[J]. 科技广场, 2014(8):3.
[2] Kumar B K S . Multifocus and multispectral image fusion based on pixel significance using discrete cosine harmonic wavelet transform[J]. Signal, Image and Video Processing, 2013, 7(6):1125-1143.
博主简介:擅长智能优化算法、神经网络预测、信号处理、元胞自动机、图像处理、路径规划、无人机等多种领域的Matlab仿真,相关matlab代码问题可私信交流。
部分理论引用网络文献,若有侵权联系博主删除。
本文提出了一种基于离散余弦谐波小波变换(DCHWT)的图像融合方法,旨在在降低计算复杂性的同时保持视觉质量和融合图像的性能。与传统的卷积和提升基小波方法相比,DCHWT表现出了相似的性能,甚至优于提升基方法,并且在计算复杂性方面具有优势。提供的联合直方图函数用于计算图像的联合特征。仿真结果证实了DCHWT的有效性,并与其他方法进行了对比。
806

被折叠的 条评论
为什么被折叠?



