Skin detection in the CIELab and HSV color space

左心房为你撑大大i 提交于 2019-12-24 01:24:19

问题


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



来源:https://stackoverflow.com/questions/7411369/skin-detection-in-the-cielab-and-hsv-color-space

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!