Remove non uniform illumination
조회 수: 2 (최근 30일)
이전 댓글 표시
Dear all, I want to remove non-uniform illumination from image. Any body can help me?
댓글 수: 0
답변 (2개)
Bjorn Gustavsson
2011년 5월 31일
If you have the Image Processing toolbox there is a demo for how to correct for non-uniform illumination. That might help. If you dont have that one you could try homomorphic filtering. Maybe something like this:
fK = suitable_high_pass_filter_kernel;
im_out = exp(real(ifft(log(Im_in).*fK))) + ...
mean(Im_in(:));
Or if it is "just" a question of vignetting you could try to correct your image thusly:
im_out = im_in./cos(theta).^n;
where theta is the approximate angle of the pixel lines-of-sight
HTH.
댓글 수: 0
Bibi Najma
2021년 4월 25일
This link may help : https://blogs.mathworks.com/steve/2013/06/25/homomorphic-filtering-part-1/
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!