Finding transmission map of an image.

1 次查看(过去 30 天)
How to calculate transmission map of an image using standard deviation.
I used the following equation but I didn't get the correct output.
IMG-20191023-WA0003.jpgA is airlight.

回答(1 个)

Subhadeep Koley
Subhadeep Koley 2019-10-29
Hi, it seems that you are trying to calculate transmission map from air-light to perform some kind of haze reduction.
A function named imreducehaze() comes inbuilt starting from MATLAB 2017b. This function returns the Global atmospheric light value value and Transmission Map of an image. The following code might help.
A = imread('yourImage.jpg'); % Read your image
[J,T,L] = imreducehaze(A); % T = Transmission map, L = Global atmospheric light value

类别

Help CenterFile Exchange 中查找有关 Modify Image Colors 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by