Home
last modified time | relevance | path

Searched refs:skin_threshold (Results 1 – 2 of 2) sorted by relevance

/external/libvpx/libvpx/vpx_dsp/
Dskin_detection.c22 static const int skin_threshold[6] = { 1570636, 1400000, 800000, variable
53 return (vpx_evaluate_skin_color_difference(cb, cr, 0) < skin_threshold[0]); in vpx_skin_pixel()
62 if (skin_color_diff < skin_threshold[i + 1]) { in vpx_skin_pixel()
63 if (y < 60 && skin_color_diff > 3 * (skin_threshold[i + 1] >> 2)) { in vpx_skin_pixel()
66 skin_color_diff > (skin_threshold[i + 1] >> 1)) { in vpx_skin_pixel()
73 if (skin_color_diff > (skin_threshold[i + 1] << 3)) { in vpx_skin_pixel()
/external/webrtc/modules/video_processing/util/
Dskin_detection.cc22 static const int skin_threshold[6] = {1570636, 1400000, 800000, variable
53 return (EvaluateSkinColorDifference(cb, cr, 0) < skin_threshold[0]); in SkinPixel()
66 if (diff < skin_threshold[i + 1]) { in SkinPixel()
68 } else if (diff > (skin_threshold[i + 1] << 3)) { in SkinPixel()