当前位置:网站首页>[Image dehazing] Image dehazing based on color attenuation prior with matlab code
[Image dehazing] Image dehazing based on color attenuation prior with matlab code
2022-08-10 18:20:00 【Matlab research studio】
1 Introduction
Haze is the result of the interaction between specific climatic conditions and human activities, and the widely existing suspended particles in the atmosphere in haze weather will inevitably absorb and scatter light to a certain extent, resulting in a significant decrease in the visual effect of outdoor images, manifested as blurred image content, decreased contrast, and color attenuation.Among them, the aerial image vision system is particularly affected by fog and haze weather because the images it collects often have a large depth of field, and even the aerial images obtained under sunny conditions are often disturbed by the accumulated moisture, fog and haze.The comparison of degraded aerial images in haze weather is shown in Figure 1.In view of the fact that many algorithms in computer vision related to image understanding [1], target recognition [2], target tracking [3] and other fields are based on the premise that the input image or video is taken under ideal weather conditions, eliminating hazeIt has significant research significance and application value to restore the corresponding sunny image from the negative effect of the image caused by the weather.In the early days, the processing methods of image dehazing were mainly divided into three categories: (1) foggy image adjustment method based on histogram equalization technology [4]; (2) foggy image enhancement method based on Retinex model [5];The result of the interaction between climatic conditions and human activities, and the widespread presence of suspended particles in the atmosphere in haze weather is bound to have a certain degree of absorption and scattering of light, resulting in a significant decrease in the visual effect of outdoor images, manifested as blurred image content,Contrast drop and color falloff.Among them, the aerial image vision system is particularly affected by fog and haze weather because the images it collects often have a large depth of field, and even the aerial images obtained under sunny conditions are often disturbed by the accumulated moisture, fog and haze.The comparison of degraded aerial images in haze weather is shown in Figure 1.In view of the fact that many algorithms in computer vision related to image understanding [1], target recognition [2], target tracking [3] and other fields are based on the premise that the input image or video is taken under ideal weather conditions, eliminating hazeIt has significant research significance and application value to restore the corresponding sunny image from the negative effect of the image caused by the weather.In the early days, the processing methods of image dehazing were mainly divided into three categories: (1) foggy image adjustment method based on histogram equalization technology [4]; (2) foggy image enhancement method based on Retinex model [5]; (3) based on homomorphic filtering technologyThe foggy image restoration method [6].Although these methods can improve the visual effect of the image through methods such as image contrast adjustment, color correction and detail highlighting, so as to achieve a certain degree of image visual effect improvement.However, since the degradation mechanism of foggy images is ignored, the image information loss or serious distortion is often caused in the enhancement process.
Aiming at the degradation mechanism of aerial images in haze weather, this paper proposes a dehazing algorithm for aerial images based on color attenuation prior. Firstly, a quantification map of fog and dense fog is constructed, and combined with clustering technology, the foggy images are decomposed intoThen, an improved global atmospheric light estimation method is proposed, which can effectively improve its estimation accuracy by establishing a candidate area. This paper designs a linear aerial image depth structure estimation model, which can efficiently use the depth of field features of aerial images.Obtain the depth map, and then use the guided filter to improve the edge structure of the depth map. According to the obtained global atmospheric light and depth map, the albedo of the scene can be estimated through the atmospheric scattering model, and then the restored haze-free image can be obtained. Experimental resultsThe comparison verifies the efficiency, robustness and effectiveness of the proposed algorithm.
2 Emulation code
close all;clear;clc;
I = imread('C:\Users\Tiger\Desktop\All code and article finishing\Fog Atlas\18.bmp');
I=double(I)
hsvI = rgb2hsv(I);
s = hsvI(:,:,2);
v = hsvI(:,:,3);
maxI=max(max(v-s));
minI=min(min(v-s));
dif=v-s;
d=(dif-minI)*255/(maxI-minI);
r=15;
output = ordfilt2(d, 1, ones(r,r), 'symmetric');
%----- Parameters for Guided Image Filtering -----
gimfiltR = 30;
eps = 10^-3;
%-----------------------------------------------------------
refineDR = guidedfilter(rgb2gray(I),output,gimfiltR,eps);
figure,imshow([output,refineDR],[])
colormap(hot)
3 Run Results

4 References
[1]Li Qian. Research on image dehazing algorithm based on color attenuation prior and FPGA implementation [D]. Xi'an University of Technology.
[2] Chen Dapeng. Research on image dehazing algorithm based on dark channel and color attenuation prior [D]. Shandong University of Science and Technology.
Blogger profile: He is good at Matlab simulation in various fields such as intelligent optimization algorithm, neural network prediction, signal processing, cellular automata, image processing, path planning, UAV, etc. Related matlab code questions can be communicated privately.
Some theories refer to online literature. If there is any infringement, contact the blogger to delete it.
边栏推荐
猜你喜欢
随机推荐
img转base64
Live Review|How to build an enterprise-level cloud management platform in the multi-cloud era?(with the download of the construction guide)
直播回顾|多云时代,如何建设企业级云管理平台?(附建设指南下载)
哈夫曼实现文件压缩解压缩(c语言)
21天打卡挑战学习MySQL——《MySQL表管理》第二周 第五篇
【ARK UI】HarmonyOS ETS的引导页的实现
R语言创建列表数据(list):根据名称索引列表元素、双方括号访问单个元素、单方括号访问子列表
LeetCode 198:打家劫舍
验算移位距离和假设的通用性
【深度学习21天学习挑战赛】4、初尝循环神经网络(RNN)——股票预测
Mysql索引、事务与存储引擎
WebRTC源码分析 nack详解
redis分布式锁
五菱宏光MINI EV,唯一的缺点就是安全性
eager模式和graph模式 Tensorflow
ZLMediaKit 服务器源码解读---RTSP推流拉流
Toronto Research Chemicals霉菌毒素分析丨伏马菌素B2
想玩转监控神器Prometheus吗?
【接入指南 之 直接接入】手把手教你快速上手接入HONOR Connect平台(下)
pip install fatal error C1083 cannot open include file "io.h" No such file or directory








