teeth detection from image using c#
-
Hi all, I can detect face and specific color using c# and open cv. I hardly need code/ link/ help to detect teeth using c# and openCV. Waiting for your helps.
-
Hi all, I can detect face and specific color using c# and open cv. I hardly need code/ link/ help to detect teeth using c# and openCV. Waiting for your helps.
AhmedMasum wrote:
I hardly need code/ link/ help
If you hardly need it, why are you asking?
Real men don't use instructions. They are only the manufacturers opinion on how to put the thing together. Manfred R. Bihy: "Looks as if OP is learning resistant."
-
Hi all, I can detect face and specific color using c# and open cv. I hardly need code/ link/ help to detect teeth using c# and openCV. Waiting for your helps.
And what if the image has no teeth?
I know the language. I've read a book. - _Madmatt
-
And what if the image has no teeth?
I know the language. I've read a book. - _Madmatt
Then just brush it off.
Real men don't use instructions. They are only the manufacturers opinion on how to put the thing together. Manfred R. Bihy: "Looks as if OP is learning resistant."
-
And what if the image has no teeth?
I know the language. I've read a book. - _Madmatt
I don't want teeth near my ARM.
-
AhmedMasum wrote:
I hardly need code/ link/ help
If you hardly need it, why are you asking?
Real men don't use instructions. They are only the manufacturers opinion on how to put the thing together. Manfred R. Bihy: "Looks as if OP is learning resistant."
sorry for using the wrong words. Actually I really need this..
-
And what if the image has no teeth?
I know the language. I've read a book. - _Madmatt
if there is not teeth then it will show a message. But if it detect teeth then it will show another message.
-
Hi all, I can detect face and specific color using c# and open cv. I hardly need code/ link/ help to detect teeth using c# and openCV. Waiting for your helps.
Still not got any good solution..
-
Still not got any good solution..
You need to spend some time thinking about this. How exactly do you think a computer can figure out the difference between a portion of a face and a tooth or teeth? This is all about image analysis which is not a simple matter of writing a few lines of code. Try looking at some of the articles on this subject here on CodeProject and on the wider internet.
I must get a clever new signature for 2011.
-
You need to spend some time thinking about this. How exactly do you think a computer can figure out the difference between a portion of a face and a tooth or teeth? This is all about image analysis which is not a simple matter of writing a few lines of code. Try looking at some of the articles on this subject here on CodeProject and on the wider internet.
I must get a clever new signature for 2011.
Thanks for your suggestion. There are lots of online help for detecting face. There are some API to detect face from an image. But I am not getting any efficient code to detect teeth from face using c#. I am reading different articles but still can't code them. thanks.
-
Thanks for your suggestion. There are lots of online help for detecting face. There are some API to detect face from an image. But I am not getting any efficient code to detect teeth from face using c#. I am reading different articles but still can't code them. thanks.
AhmedMasum wrote:
But I am not getting any efficient code to detect teeth from face using c#.
Probably because it is very difficult to recognise where face ends and teeth begin. This is something like spectral analysis but without the accuracy.
I must get a clever new signature for 2011.
-
Hi all, I can detect face and specific color using c# and open cv. I hardly need code/ link/ help to detect teeth using c# and openCV. Waiting for your helps.
First find the mouth. Then use an edge-detection algorithm to find boundaries. The lips and teeth will be bounded by edges where the darkness changes. If you have color images, this will give you more information you can use to find edges. The bounded regions between the lips are probably teeth.