fogg density Df of an image in matlab

Iam working on image processing and i want tabulate how much i enhanced the given input foggy image to output deffoged image,Is fogg density is the thing i want to find? if it is How to find fogg density Df of a foggy image.

Answers (2)

Hi, I assume you are trying to find fog density, prior to defogging the foggy image.
A function named imreducehaze() comes inbuilt starting from MATLAB 2017b. This function returns fog density at each pixel of an image. The following code might help.
A = imread('foggysf1.jpg'); % Read your foggy image here
[~,T,~] = imreducehaze(A); % T is the fog density at each pixel
figure; imshow(T,[]);
tmap.png
Or, if you are looking for quantitative fog removal evaluation descriptor the refer to the link below.
Subhadeep Koley,thanks for your answer,but i need to find a parameter that will show the difference between foggy image and the deffoged image.
that is
FRF=Df-Ddf,where Df is the fogg density of the foggy image and Ddf is the fogg density of the enhanced or deffoged image.

1 Comment

Yes, like I said previously if you are looking for quantitative fog removal evaluation descriptor the refer to the link below.
Using that function you can get a number (Contrast-to-Noise Ratio) for both the foggy and defogged images.
Higher the Contrast-to-Noise Ratio better the defogging efficiency.

Sign in to comment.

Asked:

on 29 Oct 2019

Commented:

on 6 Nov 2019

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!