필터 지우기
필터 지우기

pixel bin relation imhist

조회 수: 2 (최근 30일)
Sylvain Hauser
Sylvain Hauser 2017년 8월 22일
답변: Image Analyst 2017년 8월 22일
Hello,
I'm using imhist, and I would like to assign a default value to each pixel whose intensity appears less than a fixed number of times in the image. In other words, I would like a function whose input is an image and the output is its histogram and the concerned pixels (their location) for each bin of the histogram. I could write a script doing that, but I'm looking for a direct method, as optimized as possible.
Thanks for your help
Sylvain
  댓글 수: 1
Adam
Adam 2017년 8월 22일
Well, I'm pretty sure there isn't a single inbuilt function that will do it all for you so you'll have to write some code. It depends what you consider a 'direct' method vs whatever you think the alternative is.

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

답변 (3개)

Jan
Jan 2017년 8월 22일
The question is not clear. What are " concerned pixels (their location)" exactly?
I assume you want to start with:
[counts, binLocations] = imhist(I); % Or imhist(I, n) with a suitng n?
And now you want set all binLocations with counts<limit to a certain value? How would the script you have mentioned look like?
  댓글 수: 3
Adam
Adam 2017년 8월 22일
Well, you haven't shown your script so who knows if there is a better way or not until you do?!
Sylvain Hauser
Sylvain Hauser 2017년 8월 22일
Sorry, here is my script, f being the grayscale image and F a factor to determine the threshold:
function [f] = imhist2(f,F)
bl=linspace(0,1,256);
bl1=zeros(size(bl));
bl1(2:end)=(bl(1:end-1)+bl(2:end))/2;
bl2=ones(size(bl));
bl2(1:end-1)=(bl(1:end-1)+bl(2:end))/2;
th=F*max(imhist(f));
cn=zeros(size(bl));
for i=1:length(bl)
ind=find(f>bl1(i)&f<bl2(i));
cn(i)=length(ind);
if cn(i)<th
f(ind)=mean2(f);
end
end
end

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


Jan
Jan 2017년 8월 22일
편집: Jan 2017년 8월 22일
Try this:
Edge = linspace(0,1,256);
[N, Edge, Bin] = histcounts(f, Edge);
V = (N < (F * max(N)));
Mask = V(Bin);
f(Mask) = mean(f(:));
histcounts determines the frequency of values. I've used the simpler linspace(0,1,256) here, because the intention of your bl1 and bl2 is not clear to me. You can adjust the wanted edges as you want. Then a mask is created, which is TRUE for all values, which appear less than F times the most frequent value.

Image Analyst
Image Analyst 2017년 8월 22일
Then simply threshold it and assign the new value you want.
pixelsToReplace = cfImage < someThresholdValue;
cfImage (pixelsToReplace) = desiredValue;

Community Treasure Hunt

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

Start Hunting!

Translated by