Face detection in PHP

前端 未结 6 612
一整个雨季
一整个雨季 2020-12-25 08:49

Does anybody know of a good way to do face detection in PHP? I came across some code here that claims to do this, but I can\'t seem to get it to work properly. I\'d like to

6条回答
  •  無奈伤痛
    2020-12-25 09:13

    Try removing the +1 from these lines:

     $ii_w = $image_width+1;
     $ii_h = $image_height+1;
    

    This code is trying to check the colors from positions 1 to 320 instead of 0 to 319 in the 320 pixel image.

提交回复
热议问题