I'm doing my final year project on 'Image Processing Methods for facial recognition using Matlab'. I've got Visual Studio 2005 background but never used MatLab before. I've just started on with research, video tutorials and reading.
Can anyone please help me with a guide, where can I start this from? Does this face detection code helps?
No redeeming values here that I found. The entire contents of this submission:
originimage=imread('D:\ab5.jpg');
imagemask=rgb2hsv(originimage);
[row column k]=size(imagemask);
h=imagemask(:,:,1);
s=imagemask(:,:,2);
v=imagemask(:,:,3);
for i=1:row
for j=1:column
if h(i,j)>0.1
h(i,j)=0;
else
h(i,j)=1;
end
end
end
figure,imshow(h);
There is no help. No indication of what it does. No comments. It does not selectively find colors that may be facial in characteristics. Perhaps all I can offer is a poor rhyme, written at an appropriate level for this submission. (With homage to Dr. Seuss.)
This will not help you find a face.
It will not find one anyplace.
Not in a tiff, nor in a jpeg,
not even if you've drunk a keg.
It cannot help you with your job,
at best it will make your head throb.
Hi all!
I'm doing my final year project on 'Image Processing Methods for facial recognition using Matlab'. I've got Visual Studio 2005 background but never used MatLab before. I've just started on with research, video tutorials and reading.
Can anyone please help me with a guide, where can I start this from? Does this face detection code helps?
Your help would be very much appreciated! :))
No redeeming values here that I found. The entire contents of this submission:
originimage=imread('D:\ab5.jpg');
imagemask=rgb2hsv(originimage);
[row column k]=size(imagemask);
h=imagemask(:,:,1);
s=imagemask(:,:,2);
v=imagemask(:,:,3);
for i=1:row
for j=1:column
if h(i,j)>0.1
h(i,j)=0;
else
h(i,j)=1;
end
end
end
figure,imshow(h);
There is no help. No indication of what it does. No comments. It does not selectively find colors that may be facial in characteristics. Perhaps all I can offer is a poor rhyme, written at an appropriate level for this submission. (With homage to Dr. Seuss.)
This will not help you find a face.
It will not find one anyplace.
Not in a tiff, nor in a jpeg,
not even if you've drunk a keg.
It cannot help you with your job,
at best it will make your head throb.
Comment only