当前位置:网站首页>[image fusion] multi focus and multi spectral image fusion based on cross bilateral filter and weighted average with matlab code
[image fusion] multi focus and multi spectral image fusion based on cross bilateral filter and weighted average with matlab code
2022-06-30 03:50:00 【Matlab scientific research studio】
1 brief introduction
For low illumination or night conditions, the signal-to-noise ratio of color images is low 、 The image details are not clear enough ; The near-infrared camera can get the texture under this condition 、 Images with rich details such as edges , But the lack of color information , A cross bilateral filter and weighted average image fusion algorithm are proposed , It can get clear color image under low illumination .
2 Part of the code
function h=gauss_ker2D(sigmas,ksize)%%% 2D Gaussian Kernel Generation.%% %%% Gaussian Kernel Generation.% %% 1st Method.% for x=-floor(ksize/2):floor(ksize/2)% for y=-floor(ksize/2):floor(ksize/2)% h1(x+floor(ksize/2)+1,y+floor(ksize/2)+1)=exp(-(x^2+y^2)/(2*(sigmas)^2));% end% end%% 2nd Method.x=[-floor(ksize/2):floor(ksize/2)];x2=repmat(x.^2,ksize,1);x3=x2'+x2;h=exp(-(x3/(2*(sigmas)^2)));
3 Simulation results

4 reference
[1] Wuchuan , Yang Dong . Improved multispectral bilateral filtering image fusion [J]. Chinese Journal of image graphics , 2013, 18(9):6.
About bloggers : Good at intelligent optimization algorithms 、 Neural networks predict 、 signal processing 、 Cellular automata 、 The image processing 、 Path planning 、 UAV and other fields Matlab Simulation , relevant matlab Code problems can be exchanged by private letter .
Some theories cite network literature , If there is infringement, contact the blogger to delete .
边栏推荐
- C#【高级篇】 C# 泛型(Generic)【需进一步补充:泛型接口、泛型事件的实例】
- The 5-year Android development interview took 20 days to join Alibaba
- Number of students from junior college to Senior College (III)
- Laravel9 installation locale
- 1148_ Makefile learning_ Targets, variables, and wildcards in makefile
- 【图像融合】基于交叉双边滤波器和加权平均实现多焦点和多光谱图像融合附matlab代码
- Hebb and delta learning rules
- Implementation of aut, a self-developed transport layer protocol for sound network -- dev for dev column
- Version correspondence table of tensorflow, CUDA and bazel
- 【作业】2022.5.23 MySQL入门
猜你喜欢

UML diagrams and list collections

How to use FME to create your own functional software

云原生——Web实时通信技术之Websocket
![[note] Introduction to data analysis on June 7, 2022](/img/8b/9119bfdd10227f5c29ca2ece192880.png)
[note] Introduction to data analysis on June 7, 2022
![[note] on May 27, 2022, MySQL is operated through pychart](/img/34/36a3765683b2af485ca7c3e366da59.png)
[note] on May 27, 2022, MySQL is operated through pychart

Redis中的Hash设计和节省内存数据结构设计

Redis在windows系统中使用

1151_ Makefile learning_ Static matching pattern rules in makefile
![C # [advanced part] C # multithreading](/img/16/2a7c477b4cee32d9ce1e543c9d4c7e.png)
C # [advanced part] C # multithreading

Laravel9 installation locale
随机推荐
将DataBinding整合到Activity/Fragment的一种极简方式
Solve the problem of Navicat connecting to the database
dbt产品初体验
A GPU approach to particle physics
Analysis of similarities and differences of various merged features (Union, merge, append, resolve) in ArcGIS
4-4 beauty ranking (10 points)
ThingsBoard教程(二三):在规则链中计算二个设备的温度差
DO280私有仓库持久存储与章节实验
MySQL performance optimization (6): read write separation
[punch in - Blue Bridge Cup] day 5 --- lower() small
Is the largest layoff and salary cut on the internet coming?
Tidb 6.0: rendre les GRT plus efficaces 丨 tidb Book Rush
SDS understanding in redis
【论文阅读|深读】DANE:Deep Attributed Network Embedding
Selenium environment installation, 8 elements positioning --01
C # [advanced part] C # multithreading
C#【高级篇】 C# 多线程
Simple theoretical derivation of SVM (notes)
【作业】2022.5.24 MySQL 查操作
【笔记】AB测试和方差分析