I have the following IR (infrared) image of a human fist captured with a webcamera converted to work in IR. The picture has captured the veins under the skin. What i want to do is just retain the fist and get rid of the surrounding black area. How do i do this in MATLAB?

Here is what I have done so far, but I'm just getting a black image for this
a=imread('1.jpg');
figure; imshow(a);
b=rgb2gray(a);
figure;
imshow(b);
[j,k]=size(b);
for g=1:j
for f=1:k
if b(j,k)>0.06
c(j,k)=0;
else c(j,k)=1;
end
end
end
figure,imshow(c);
Can somebody please tell me what I'm doing incorrectly, and how I can accomplish what I want? Also when i mean i want to get rid of the background i mean I want a white background instead of the black one>Cos the purpose of this project is to retain just the veins, the veins will be retained as black . and then i will take the co ordinates of these points .So i dont want the background to be generated as co ordinates as well...! So i want the background as white ..! how to do this ?


