based on this article skin could be approximatly detected using hsv color space and taking hue range between 6 and 38.
i tried to use some combination of cvThreshold, in particular i thought this could be the right way:
cvThreshold(planeH, planeH, 38, UCHAR_MAX, CV_THRESH_TRUNC);
cvThreshold(planeH, planeH, 6, UCHAR_MAX, CV_THRESH_BINARY_INV);
but it does not work. some help?