구 글 크롬 얼굴 인식 기능https://ouweiya.github.io/FaceDetector

Google Chomre, 자체 얼굴 검사 API 맛 보기
핵심 API
faceDetector
  .detect(img)
  .then(faces =>
    faces.forEach(face => {
      const { height, width, top, left } = face.boundingBox;
      frameRef.current.style.cssText = `
        display: inline-block;
        height: ${height * scale}px;
        width: ${width * scale}px;
        transform: translate(${left * scale}px, ${top * scale}px);
      `;
    })
  )
  .catch(error => {});

체험 주소:https://ouweiya.github.io/Fac...
github: https://github.com/ouweiya/FaceDetector

좋은 웹페이지 즐겨찾기