【图像融合】基于matlab Frequency Partition图像融合【含Matlab源码 077期】图像融合MATLAB
一、简介
基于matlab Frequency Partition图像融合
二、部分源代码
%Frequency Partition (FP) fusion technique %VPS Naidu, MSDF Lab, CSIR-National Aerospace Laboratories, India clear all; close all; home; f = [0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1]; %frquency partition factor (bt. 0 to 1) %Reference image imt = double(imread('saras9t.jpg')); % Imaged to be fused im1 = double(imread('saras91.jpg')); im2 = double(imread('saras92.jpg')); % image fusion for i=1:1%length(f) imf = fpdctf(im1,im2,f(i)); imf = imf-min(imf(:)); figure(3); subplot(221);imshow(imt,[]);title('原图') subplot(222);imshow(im1,[]);title('图1') subplot(223);imshow(im2,[]);title('图1') subplot(224);imshow(imf,[]);title('Frequency Partition 融合后图') e=imt-imf; figure(4); imshow(e,[]) per_met1(i,:) = pereval(imt,abs(imf)); per_met2(i,:) = perevalwt(imf); end三、运行结果
四、matlab版本及参考文献
1 matlab版本
2014a
2 参考文献
[1] 蔡利梅.MATLAB图像处理——理论、算法与实例分析[M].清华大学出版社,2020.
[2]杨丹,赵海滨,龙哲.MATLAB图像处理实例详解[M].清华大学出版社,2013.
[3]周品.MATLAB图像处理与图形用户界面设计[M].清华大学出版社,2013.
[4]刘成龙.精通MATLAB图像处理[M].清华大学出版社,2015.
Effortlessly Handle Ultra-Long Sequences with Megalodon Transformer for Superior AI Efficiency
Vultr Cloud Computer与High Frequency服务器的全面对比
第10章、基于MSYS的Windows Driver开发基于windows开发语言
Master cy.waitUntil: Effortlessly Eliminate Flakiness in Cypress Tests
Reset and Clear Recent Items and Frequent Places in Windows 10
解决 Python Requests 中的 Unable to Get Local Issuer Certificate 问题