当前位置:网站首页>[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 .
边栏推荐
- Laravel9 local installation
- Tidb 6.0: rendre les GRT plus efficaces 丨 tidb Book Rush
- matplotlib. pyplot. Hist parameter introduction
- Mysql性能优化(5):主从同步原理与实现
- The 5-year Android development interview took 20 days to join Alibaba
- 【力扣刷题总结】数据库题目按知识点分类总结(持续更新/简单和中等题已完结)
- RPC correction
- Usage record of unity input system (instance version)
- 124 articles in total! Motianlun "high availability architecture" dry goods document sharing (including Oracle, mysql, PG)
- [note] on May 28, 2022, data is obtained from the web page and written into the database
猜你喜欢

1152_ Makefile learning_ Pattern matching rules

TiDB 6.0:讓 TSO 更高效丨TiDB Book Rush

Is the largest layoff and salary cut on the internet coming?

关于智能视觉组上的机械臂
![[punch in - Blue Bridge Cup] day 3 --- slice in reverse order list[: -1]](/img/c2/13693dcb51aab565957b6c5e686b7c.jpg)
[punch in - Blue Bridge Cup] day 3 --- slice in reverse order list[: -1]

1151_ Makefile learning_ Static matching pattern rules in makefile

Laravel9 installation locale

Implementation of aut, a self-developed transport layer protocol for sound network -- dev for dev column

Green new power and "zero" burden of computing power -- JASMINER X4 series is popular

SDS understanding in redis
随机推荐
Installation and use of yarn
[note] on May 28, 2022, data is obtained from the web page and written into the database
How to use FME to create your own functional software
华为云原生——数据开发与DataFactory
【常见问题】浏览器环境、node环境的模块化问题
What are the defaults for Binding. Mode=Default for WPF controls?
Litjson parses the generated JSON file and reads the dictionary in the JSON file
MySQL performance optimization (6): read write separation
laravel9本地安装
[punch in - Blue Bridge Cup] day 3 --- slice in reverse order list[: -1]
[operation] getting started with MySQL on May 23, 2022
Use ideal to connect to the database. The results show some warnings. How to deal with this part
Version correspondence table of tensorflow, CUDA and bazel
如何利用FME 创建自己的功能软件
Laravel9 installation locale
毕业设计EMS办公管理系统(B/S结构)+J2EE+SQLserver8.0
dotnet-exec 0.5.0 released
C#【高级篇】 C# 泛型(Generic)【需进一步补充:泛型接口、泛型事件的实例】
Simple theoretical derivation of SVM (notes)
A minimalist way to integrate databinding into activity/fragment