Searched refs:skin_threshold (Results 1 – 3 of 3) sorted by relevance
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_skin_detection.c | 27 static const int skin_threshold[6] = { 1570636, 1400000, 800000, variable 59 return (evaluate_skin_color_difference(cb, cr, 0) < skin_threshold[0]); in vp9_skin_pixel() 68 if (skin_color_diff < skin_threshold[i + 1]) { in vp9_skin_pixel() 69 if (y < 60 && skin_color_diff > 3 * (skin_threshold[i + 1] >> 2)) in vp9_skin_pixel() 72 skin_color_diff > (skin_threshold[i + 1] >> 1)) in vp9_skin_pixel() 78 if (skin_color_diff > (skin_threshold[i + 1] << 3)) { in vp9_skin_pixel()
|
/external/webrtc/webrtc/modules/video_processing/util/ |
D | skin_detection.cc | 21 static const int skin_threshold = 1570636; // q18 variable 62 return (EvaluateSkinColorDifference(u_avg, v_avg) < skin_threshold); in MbHasSkinColor()
|
/external/libvpx/libvpx/vp8/encoder/ |
D | pickinter.c | 56 static const int skin_threshold[6] = { 1570636, 1400000, 800000, variable 84 return (evaluate_skin_color_difference(cb, cr, 0) < skin_threshold[0]); in is_skin_color() 95 if (skin_color_diff < skin_threshold[i + 1]) { in is_skin_color() 96 if (y < 60 && skin_color_diff > 3 * (skin_threshold[i + 1] >> 2)) { in is_skin_color() 99 skin_color_diff > (skin_threshold[i + 1] >> 1)) { in is_skin_color() 106 if (skin_color_diff > (skin_threshold[i + 1] << 3)) { in is_skin_color()
|