Exact Skin color HSV range

 ̄綄美尐妖づ 提交于 2019-12-20 09:45:16

问题


I have seen all questions on SO for range of HSV color space for skin
But I can only figure out this

Code -

CvScalar  hsv_min = cvScalar(0, 30, 60, 0);
CvScalar  hsv_max = cvScalar(20, 150, 255, 0);
//range I am using is { 0,30,60,0 & 20,150,255,0 }
cvCvtColor(src, hsv_image, CV_BGR2HSV);
cvInRangeS (hsv_image, hsv_min, hsv_max, hsv_mask);
cvDilate(hsv_mask,hsv_mask,0,1);
cvErode(hsv_mask,hsv_mask,0,1);
cvSmooth( hsv_mask, hsv_mask, CV_MEDIAN);

Problem with this range ( { 0,30,60,0 & 20,150,255,0 } ) is it detects even red color and when you place your hand in red background it does not track your skin...
Please Help !!!


回答1:


Basically, it's hard to have one fixed color range for skin, because even if you want to detect only your own skin, its color will actually change a lot depending on lighting conditions.

So, maybe you can use the idea of this nice scientific article from 2011:

http://www.robots.ox.ac.uk/~vgg/research/hands/

Basically, they detect face (it's easy with oepncv). Then they extract the skin color of the face (which is very specific to the persons on the image). Then they detect skin using this color. Since the color is very specific, they should have much less false detection, than what you have with your fixed color range.




回答2:


According to this : http://matmidia.org/sibgrapi2009/media/posters/59928.pdf

The skin in channel H is characterized by values between 0 and 50, in the channel S from 0.23 to 0.68 for Asian and Caucasian ethnics.

You'll have to take extra care with very dark parts of the image and probably discard them altogether, as the HSV conversion gets really noisy for small values of V.

Depending on what your constraints are, you could also consider using a coloured glove (some colour that is not appearing normally in the scene), or setting a background of different colour than red, that is further away from skin colours (magenta, green, whatever).




回答3:


I know it is too late to reply to this. But I am doing the same, and I used K means clustering to get the skin color. That is first you have to Detect the face, which I am doing with the use of Haar cascade classifier, and then based on the coordinates of the face you can crop the face and then use it as the source to cluster the color. Find out the cluster that has the most elements and that will be your skin color. Or without specifying one particular value you can get the cluster center point and you can use it as a range by deducting and adding a particular value. This will be helpful http://answers.opencv.org/question/23196/k-mean-clustering-of-hsv-histogram-of-frames-of-a-video/




回答4:


I have tried
lower = np.array([0, 10, 60], dtype = "uint8") upper = np.array([20, 150, 255], dtype = "uint8") It gives almost good result .




回答5:


Adaptive skin detector exist on OpenCv see samples/c/adaptiveskindetector_sample.cpp




回答6:


Try this preprocessing function in your code:

def preprocess(action_frame):

    blur = cv2.GaussianBlur(action_frame, (3,3), 0)
    hsv = cv2.cvtColor(blur, cv2.COLOR_RGB2HSV)

    lower_color = np.array([108, 23, 82])
    upper_color = np.array([179, 255, 255])

    mask = cv2.inRange(hsv, lower_color, upper_color)
    blur = cv2.medianBlur(mask, 5)

    kernel = cv2.getStructuringElement(cv2.MORPH_ELLIPSE, (8, 8))
    hsv_d = cv2.dilate(blur, kernel)

return hsv_d

I have been using this for months now. It might solve your problem forever.




回答7:


And if you are using video caption, you should be concerned that in most of the cases the cameras make an automatic contrast adjust, this impact in your images because you are going to have a significant difference of tones, also you should consider the shadows and light sources that impact in the skin




回答8:


Deepgaze is a library with skin detecting in addition to other functionalities.

DeepGaze Github

He uses:

[0, 58, 50] lower bound skin HSV
[30, 255, 255] upper bound skin HSV

He is quite responsive on Github so an option would be to contact him and ask how he came up with those numbers.



来源:https://stackoverflow.com/questions/8753833/exact-skin-color-hsv-range

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