Hai I have this Ir image that has captured the veins under the skin.I want to process this image so as to retain just the veins as black colour and get everythin else as white .Then I want to generate the co ordinate pixels as these black pixels which will be the veins.

This is what I have done till now :

a=imread('11.jpg');
figure(1),imshow(a);
title('original image');
cform = makecform('srgb2lab');
for ii = 1:3
    a(:,:,ii) = medfilt2(a(:,:,ii),[5 5]);
end
lab = applycform(a,cform); 
figure(2),imshow(lab);
title('ímage in color space after filtering');
b=lab(:,:,1);
c=im2bw(b,0.2);
figure(3),imshow(c);
title('b&white boundry of fist');
neg=1-c;
figure(4),imshow(neg);
color=a;
r=color(:,:,1);
r(~c)= 0;
g = color(:,:,2);
g(~c)= 0;
b = color(:,:,3);
b(~c)= 0;
% Concatenate in the "3rd dimension" to re-constitute an RGB image.
color = cat(3,r,g,b);
figure(5),
imshow(color);
title('reconstructed fist with black bg');
gray=rgb2gray(color);
figure(6);
imshow(gray);
title('grayscale of fist');

i1=imresize(gray,[256 256],'bilinear');
figure(7);
imshow(i1);
title('Resized Image of grayscale');

figure(8),imhist(i1);
title('histogram of resized grayscale');
i2=histeq(i1,256);
figure(9),imshow(i2);
title('histogram equalisatio');
figure(10),imhist(i2);
title('équalised histogram');
e=medfilt2(i2,[5 5]);
figure(7),imshow(e);
f=medfilt2(e,[5 5]);
figure(8),imshow(f);
g=medfilt2(f,[5 5]);
figure(9),imshow(g);
s=g;
figure(10),imshow(s);
l=imresize(s,[200 200]);
figure(11);
imshow(l);

[h,u]=size(l);
smth=double(l);
wl=1.5;
we=3;
wt=15;
eline=smth;;
[grady,gradx]=gradient(smth);
eedge=-1*sqrt((gradx.*gradx+grady.*grady));
figure(12);
imshow(uint8(-eedge));
m1=[-1 1];
m2=[-1;1];
m3=[1 -2 1];
m4=[1;-2;1];
m5=[1 -1;-1 1];
cx=conv2(smth,m1,'same');
cy=conv2(smth,m2,'same');
cxx=conv2(smth,m3,'same');
cyy=conv2(smth,m4,'same');
cxy=conv2(smth,m5,'same');
for i=1:h
    for j=1:u
        eterm(i,j)=(cyy(i,j)*cx(i,j)*cx(i,j)-2*cxy(i,j)*cx(i,j)*cy(i,j)+cxx(i,j)*cy(i,j)*cy(i,j))/((1+cx(i,j)*cx(i,j)+cy(i,j)*cy(i,j))^1.5);
    end
end
figure(13);
imshow(uint8(-eterm));
eext=(wl*eline+we*eedge+wt*eterm);
figure(14);
imshow(uint8(eext));
eext=(wl*eline+we*eedge);
figure(15);
imshow(uint8(eext));
whos eext;

and this is the image:

enter image description here

So How do I proceed after this so that I retain the veins as black and eveything else as white?

afer median filtering

So this is the image after median filtering , as you can see the veins are quite dark. So how do i proceed from here so that the veins are reatined as black and everything else as white ?..please help ..:( ! thank you :D all !

link|improve this question
I dunno why my code is coming this way. I have posted each of it in different lines but it just appears as a continuous thing here :( – khadeejah Apr 24 '11 at 16:22
@khadeejah: Welcome to StackOverflow. To correctly indent your code, you need to either insert 4 spaces at the beginning, or block-select your text and click on the curly braces {} in the edit window. That will indent the code correctly. In future, please do not link images to personal blogs, as we'd like to keep it documented here. Otherwise, the post will have no context if you delete your blogpost. I know you don't have the rep to upload images using the site, so I've done it for you. But please do remember this in future. – yoda Apr 24 '11 at 16:39
Secondly, that is a huge wall of code that you have posted. This is not rent-a-coder. While we are most willing to help you and point you in the right direction, we certainly don't have the time to dissect your code. So, I'd suggest trimming your code (for starters, you can remove all the titles, labels, etc) and reduce its bulk to a small set that describes the problem that you have. – yoda Apr 24 '11 at 16:46
Thirdly, you have given us the code to what you have done. But you don't tell us how far it has taken you... Do you manage to separate the veins at all? Does it come out red instead of black or are you getting more veins than there are? We don't know. So, telling us how far you've gotten in a more descriptive way (perhaps with images) and asking a pointed question will help you get better and faster replies. Also, since you mentioned in your other question that this was for a project, I've tagged it homework. – yoda Apr 24 '11 at 16:49
Lastly, please take a look at the SO community policy on accepting answers. Accepting is a small way of saying thanks, and letting the community know that you're someone that values their time. Also, you get a nice shiny bronze badge :) – yoda Apr 24 '11 at 16:50
show 13 more comments
feedback

1 Answer

up vote -2 down vote accepted

Once you have the second image, you will need to do image thresholding on it to get what you are asking for. You can implement it yourself or use graythresh from matlab (requires image processing toolbox).

link|improve this answer
oki @Pavan I will try this and get abk to you as soon as possible. :Dthank you so much for replying – khadeejah Apr 25 '11 at 5:39
does it prove useful? – vini Feb 19 at 16:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.