Skin detection in the CIELab and HSV color space

2019-07-22 06:11发布

问题:

I've seen CIELab and HSV suggested a few times here on stackoverflow, but I haven't been able to find any values corresponding to skin. What are good values to look for when doing skin detection in the CIELab and HSV color spaces?

For example in RGB I've seen this:

R > 95 AND G > 40 AND B > 20 AND
max{R, G, B} – min{R, G, B} >15 AND
|R – G| > 15 AND
R > G AND R > B
OR
R > 220 AND G > 210 AND B > 170 AND
|R – G| <= 15 AND
R > B AND G > B

Are there similar expressions for CIELab and HSV?

回答1:

You could just measure it

Now if there was only a large set of images with large areas of flesh tones available on the internet?



回答2:

Some of my bookmarks on the subject:

Human Body Tracking by Adaptive Background Models and Mean-Shift Analysis

Adaptive Skin Color Classificator

http://www.codeproject.com/KB/audio-video/face_detection.aspx

http://www.codeproject.com/KB/graphics/RedMatterLibrary.aspx