필터 지우기
필터 지우기

what is the best way for thresholding this image .....please?

조회 수: 2 (최근 30일)
mmm ssss
mmm ssss 2012년 1월 24일
i wrote this code {
img=imread(..........);
imshow(img);
medimage=medfilt2(img,[5 5]);%median Filtering image
figure,imshow(medimage);
z=adapthisteq(medimage);
figure,imshow(z);
H = fspecial('unsharp');
y=imfilter(z,H);
figure,imshow(y);
s=roipoly(y);
nnew=img.*cast(s,class(img));
figure,imshow(nnew);
}
the result was similar to this
how i can do thresholding to make the veins obvious with white color at a black background.
help please , i am really needs this? simple reply will be most suitable to me
i am just a new in the matlab world.
thanks
  댓글 수: 6
David Young
David Young 2012년 1월 25일
Thank you, that's helpful and I can see what your code so far does. However, with apologies, I have to tell you that the next step is not obvious - picking out the veins is a mini-project.
mmm ssss
mmm ssss 2012년 1월 25일
i thanks you for your cooperation with me so much, but i didnot undestand your last comment.

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

답변 (1개)

Image Analyst
Image Analyst 2012년 1월 25일
Did you search http://iris.usc.edu/Vision-Notes/bibliography/contentsmedical.html#Medical%20Applications,%20CAT,%20MRI,%20Ultrasound,%20Heart%20Models,%20Brain%20Models to find papers such at this: Garbey, M., Merla, A., Pavlidis, I., Estimation of blood flow speed and vessel location from thermal video, CVPR04(I: 356-363).
  댓글 수: 8
Image Analyst
Image Analyst 2012년 1월 25일
It's not that you're annoying, it's more about aligning expectations. We can't do more than a few minutes of coding for you - we simply don't have the time to do lengthy, free, private consulting for anybody. For example if you need help with the adapthisteq() function, (which is the first step in adaptive local thresholding that you say you want to do - I've already mentioned that, did you try it?) we might be able to provide a demo beyond what the help does, if you provide an image. That would only be a few minutes work, not hours or days of work. So, now, let me see your adapthisteq() code and the results.
mmm ssss
mmm ssss 2012년 1월 29일
thanks for all your valuable time for comments

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

Community Treasure Hunt

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

Start Hunting!

Translated by