How to make image intensity equalization for multiple images.

조회 수: 15 (최근 30일)
Ivan Shorokhov
Ivan Shorokhov 2015년 7월 1일
댓글: mohd akmal masud 2018년 3월 14일
Given: I have 9 gray-scale images of the same size with slightly different intensity.
Want: I want to make uniform intensity for all the images.
Currently done: Just now I'm doing image adjustment followed be image equalization for each single image, by using code below
for x=1:9
eq_image(:,:,x)=histeq(imadjust(some_image(:,:,x)));
figure(x); imshow(eq_image(:,:,x), []);
end
Needed: How to make intensity the same for all 9 images?
[ACKNOWLEDGMENTS]
Thank you for help: Kerem tezcan, Image Analyst

채택된 답변

Kerem  tezcan
Kerem tezcan 2015년 7월 1일
편집: Image Analyst 2016년 5월 31일
Hey,
When you do histogram equalization, you do that separately for each image, which is not what you want, as you have also stated.
You can normalize the images to one of them. For example choose the first image as the reference, and then calculate the mean intensities of all the images, and find the scaling between each image with the reference image by the formula: sc(n) = mean_of_ref / mean_of_ims(n). Then you can multiply all the images with the corresponding individualized scaling and you will have the same mean intensity for all the images.
Other approaches would be to normalize them according to their maximum values, or similarly to the minimum values, or to the median values.
For the scaling according to the mean of the first image, the code would look like this:
for x=1:9
mns(x) = mean2(some_image(:, :, x));
scaled_image(:, :, x) = some_image(:, :, x) * (mns(1) / mns(x));
end
You can do the histogram equalization independently of the scaling, but doing that afterwards will change the mean of any image you do it to.
  댓글 수: 2
Ivan Shorokhov
Ivan Shorokhov 2015년 7월 1일
That is what I wanted to hear. Thank you very much for such an open answer!
Soum
Soum 2016년 5월 31일
Thank you very much for your pretty answer Kerem tezcan

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

추가 답변 (2개)

Ivan Shorokhov
Ivan Shorokhov 2015년 7월 2일
Another example/code for histogram equalization – might be useful.
M = zeros(256,1,'uint8'); % Store mapping - Cast to uint8 to respect data type
hist1 = imhist(img1); % Compute histograms
hist2 = imhist(img2);
cdf1 = cumsum(hist1) / numel(img1); %Compute CDFs
cdf2 = cumsum(hist2) / numel(img2);
% Compute the mapping
for idx = 1 : 256
[~,ind] = min(abs(cdf1(idx) - cdf2));
M(idx) = ind-1;
End
%Now apply the mapping to get first image to make
%the image look like the distribution of the second image
out = M(double(img1)+1);

Image Analyst
Image Analyst 2015년 7월 2일
You can do linear scaling like kerem suggested. Another option is to use imhistmatch() to match images 2 and higher to image #1.
  댓글 수: 2
mohd akmal masud
mohd akmal masud 2018년 3월 14일
Hi all
i want try open multiple images using implay. but want to change contrast first. Below is my code, but still error. anyone can help me.
P = zeros(512, 512, 313);
for K = 1 : 313
petname = sprintf('TRANSA001_CT%03d.dcm', K);
P(:,:,K) = dicomread(petname);
end
Out(:,:,K) = imadjust(P(:,:,K));
implay(Out, [-182 292]);

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

카테고리

Help CenterFile Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by