How does imflatfield work?

조회 수: 13 (최근 30일)
Julia Kelly
Julia Kelly 2019년 11월 12일
댓글: Arthur Redgate 2023년 9월 1일
What formula does the imflatfield function use when used with a matrix as input?
For example, I have an image of surface temperature (attached) = bad_img. If I apply
corr_img = imflatfield(bad_img,100);
How can I reproduce corr_img without using imflatfield? I know that the gaussian filter can be generated using
iblur=imgaussfilt(bad_img, 100);
But what are the next steps?
  댓글 수: 1
William Nitsch
William Nitsch 2021년 10월 2일
Iout = Iin * mean(gaussian_blurred_img)/gaussian_blurred_img

댓글을 달려면 로그인하십시오.

답변 (1개)

DGM
DGM 2021년 10월 2일
편집: DGM 2021년 10월 2일
William's comment is close. Probably close enough to be useful, but not quite exactly the same as what imflatfield() does.
A = imread('printedtext.png');
sigma = 30;
% this is the reference
output1 = imflatfield(A,sigma);
% this is a replication of the behavior
A = im2single(A); % non-double images are converted to single
% this is the default filter size, but it can be set explicitly too
blurred = imgaussfilt(A,sigma,'padding','symmetric','filtersize',2*ceil(2*sigma)+1);
output2 = A*mean(A(:),'omitnan')./blurred; % mean of A, not of blurred image
output2 = im2uint8(output2);
immse(output1,output2) % show that the results match
ans = 0
Bear in mind that if you want to exactly replicate the behavior, there are other things that happen (e.g. dealing with NaNs and Inf) that need to also be considered. You can always just open imflatfield() and read it.
EDIT: oof. This wouldn't be the first time I absentmindedly answered a dead question...
  댓글 수: 1
Arthur Redgate
Arthur Redgate 2023년 9월 1일
I appreciate your answer as it's helped me 5 years after the asking of the original question!

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by