face-api.js、webcamjs循环拍照识别人脸数量

import React, { Component } from 'react';
import * as faceapi from 'face-api.js';
import * as webcamjs from 'webcamjs';
import { Button } from 'antd';
class FaceRecognition extends Component {
  // 初始化摄像机
  _initCamera = async () => {
    await faceapi.nets.ssdMobilenetv1.loadFromUri(
      'http://localhost:8004/faceapi-weights/',
    );

    await faceapi.nets.faceLandmark68Net.loadFromUri(
      'http://localhost:8004/faceapi-weights/',
    );
    await faceapi.nets.faceRecognitionNet.loadFromUri(
      'http://localhost:8004/faceapi-weights/',
    );
    // 设置好打开摄像机
    this.openCamara()
  };

  componentDidMount(){
    // 初始化摄像环境
    this._initCamera()
  }

  componentWillUnmount() {
    // 关闭摄像头
    webcamjs.reset()
  }

  // 打开摄像头
  openCamara = () => {
    webcamjs.attach('#camera');
    // 延时拍照
    setTimeout(()=>{
      // 循环拍照
      this.loopTakePicture()
    },500)
  };

  // 进行拍照
  takePicture =  () => {
    webcamjs.snap( (imgUrl)=> {
      document.getElementById('picture').src = imgUrl
    });
  };

  // 循环拍照
  loopTakePicture = ()=>{
    setInterval(() => {
      this.takePicture()
      setTimeout(()=>{ this.indetifyPeople()} , 500)
    }, 5000)
  }

  // 识别人像
  indetifyPeople = async () => {
    const picture0 = document.getElementById('picture');
    const picture = await faceapi.detectAllFaces(picture0).withFaceLandmarks().withFaceDescriptors();

    // 监测当前页面中不止一张脸或是没有脸的时候
    if (!picture || picture.length !== 1) {
      console.log('人脸识别错误'); return;
    } else {
      console.log('人脸正常');
    }
  };

  render() {
    return (
       <>
         <h1>人脸识别</h1>
         <div id="camera" style={{width: 638, height: 359, background : '#000'}}></div>
         <img id="picture"/>
         <Button type="primary" onClick={this.takePicture} style={{margin: '0 auto',width : 120}}>采集人脸</Button>
       </>
     );
  }
}

export default FaceRecognition;

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值