文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

uniapp 安卓使用live-pusher实现人脸识别(拍照)功能

2023-10-04 11:17

关注

1.nvue页面使用

nvue页面可以直接使用live-pusher组件。
由于live-pusher是矩形的,一般人脸识别使用圆形,所以添加cover-image可覆盖在live-pusher上层,修改样式。

<template><div><div class="livefater"><div style="width: 300px;height: 300px;border-radius: 150px;overflow: hidden;"><live-pusher id='livePusher' ref="livePusher" class="livePusher" url="" mode="SD" :muted="true":enable-camera="true" :auto-focus="true" :beauty="1" whiteness="2" aspect="1:1"@statechange="statechange" @netstatus="netstatus" @error="error">live-pusher>div><cover-image src="/static/faceRecognition/facebox.png" class="gaiimg">cover-image>div><view class="message" style="color: #76adf1;"><text class="info">请平视屏幕,并正对光源,将脸部移入圆圈内text>view><zero-loading v-if="loading" mask type="triangle">zero-loading><u-top-tips ref="uNotify">u-top-tips>div>template><script>import {homeMenuList,menuNameList} from '@/utils/homeListMap.js'import {getNewCount,getLastGroup} from "@/api/toChatWith.js"import {login,registeredUser,getUserInfo,listMenus} from '@/api/login.js';export default {data() {return {imgData: '',pusher: null,scanWin: null,faceInitTimeout: null,snapshTimeout: null,uploadFileTask: null,faceNum: 0,loading: false,}},mounted() {// 注意:需要在onReady中 或 onLoad 延时this.pusher = uni.createLivePusherContext("livePusher", this);var that = thissetTimeout(() => {this.startPreview()})},onUnload() {console.log('关闭')this.pusher && this.pusher.close({success: (a) => {console.log("关闭");}})},methods: {//获取快照snapshotPusher() {var that = thisthis.pusher.snapshot({success: (e) => {console.log(e.message, '拍照信息');//获取图片base64that.getMinImage(e.message.tempImagePath);},})},// 开启摄像头startPreview() {var that = thisthis.pusher.startPreview({success: (a) => {console.log("livePusher.startPreview:" + JSON.stringify(a));that.snapshotPusher()},fail(err) {console.log(err);}});},//使用plus.zip.compressImage压缩图片getMinImage(imgPath) {plus.zip.compressImage({src: imgPath,dst: imgPath,overwrite: true,quality: 40},zipRes => {setTimeout(() => {var reader = new plus.io.FileReader();reader.onloadend = res => {//获取图片base64var speech = res.target.result; //base64图片this.onLogin(speech)this.imgData = speech;};//一定要使用plus.io.convertLocalFileSystemURL将target地址转换为本地文件地址,否则readAsDataURL会找不到文件reader.readAsDataURL(plus.io.convertLocalFileSystemURL(zipRes.target));}, 100);},function(error) {console.log('Compress error!', error);});},//调用登录接口onLogin(val) {login({"loginType": "faceLogin","image": val.split(',')[1]}).then(async (res) => {console.log(res)if (res.code === '200' && res.data.clientUuid) { //识别成功//写登录逻辑} else { //超过五次识别未成功,则取消识别this.faceNum += 1if (this.faceNum >= 5) {uni.showToast({icon: 'none',title: '人员未登记!'})setTimeout(() => {uni.navigateBack();}, 2000)} else {this.snapshotPusher()}}}).catch(err => {console.log(err, '调用接口失败')})},},}script><style lang="less" scoped>page {background: #fff;}.u-navbar__content__left {display: flex !important;align-items: center;}.u_nav_slot {display: flex;align-items: center;flex-direction: row;color: rgba(0, 0, 0, 0.9);font-size: 14.4rpx;font-weight: 700;}.text {margin-left: 1rpx;color: #fff;font-size: 16rpx;}.box {z-index: 99;position: absolute;left: 35%;top: 25%;width: 250rpx;height: 250rpx;background: pink;}.info {color: #76adf1 !important;font-size: 26rpx;}.livePusher {width: 300px;height: 300px;}.livefater {display: flex;justify-content: center;flex-direction: column;align-items: center;margin-top: 10rpx;margin-bottom: 50rpx;height: 350px;overflow: hidden;}.gaiimg {width: 462px;height: 350px;position: absolute;top: 0;}style>

2.vue页面使用

vue页面直接使用live-pusher组件将无法进入方法的回调中。
可见:官方描述
需要使用plus.video.createLivePusher方法

使用该方法,cover-image无法直接覆盖在上层,可以使用如下,添加一个html文件覆盖在上层,注意在页面销毁的时候,需要将该html隐藏! this.scanWin.hide();

  this.scanWin = plus.webview.create('/static/cover.html', '', {                    background: 'transparent',                    borderRaduis: '50%',                });                // // //新引入的webView显示                this.scanWin.show();
<template>    <view>        <button style="margin-top: 500px;background-color: #3c96f3" @click="snapshotPusher">            拍照        button>        <view id="livepusher" style="width: 250px;height: 250px;background-color: #fff;margin: auto;">view>        <view class="tips_text">            <text class="textphoto">正对屏幕,确保面不都在画面之内text>        view>        <zero-loading v-if="loading" mask type="triangle">zero-loading>        <u-top-tips ref="uNotify">u-top-tips>    view>template><script>import permission from '@/utils/permission.js'import { homeMenuList, menuNameList } from '@/utils/homeListMap.js'import { getNewCount, getLastGroup } from "@/api/toChatWith.js"import { login, registeredUser, getUserInfo, listMenus } from '@/api/login.js'export default {    data() {        return {            imgData: '',            pusher: null,            scanWin: null,            faceInitTimeout: null,            snapshTimeout: null,            uploadFileTask: null,            intervalId: null,            faceNum: 0,            loading: false,        };    },    methods: {        //初始化        faceInit() {            this.faceInitTimeout = setTimeout(async () => {                this.pusherInit();                // 覆盖在视频之上的内容,根据实际情况编写                // 利用plus.webview.create将扫描框页面及扫描动画(xxx.html)覆盖在视频之上;                this.scanWin = plus.webview.create('/static/cover.html', '', {                    background: 'transparent',                    borderRaduis: '50%',                });                // // //新引入的webView显示                this.scanWin.show();            }, 1000);        },        //初始化播放器        pusherInit() {            // 获取当前窗口            const currentWebview = this.$mp.page.$getAppWebview();            // 创建推流,url不填写代表不上传            this.pusher = plus.video.createLivePusher('livepusher', {                url: '',                top: '15%',                left: '10%',                width: '250px',                height: '250px',                position: 'absolute',                aspect: '9:16',                muted: false,                'z-index': 999,            });            // 将推流对象加到当前页面中            currentWebview.append(this.pusher);            //反转摄像头            this.pusher.switchCamera();            //开始预览            this.pusher.preview();            setTimeout(() => {                // this.snapshotPusher()            }, 1000);        },        //获取快照        snapshotPusher() {            let that = this            this.snapshTimeout = setTimeout(() => {                this.pusher.snapshot(                    e => {                        //拿到本地文件路径                        var src = e.tempImagePath;                        console.log(src)                        //获取图片base64                        this.getMinImage(src);                    },                    function (e) {                        plus.nativeUI.alert('snapshot error: ' + JSON.stringify(e));                    }                );            }, 100);        },        //使用plus.zip.compressImage压缩图片        getMinImage(imgPath) {            plus.zip.compressImage({                src: imgPath,                dst: imgPath,                overwrite: true,                quality: 40            },                zipRes => {                    setTimeout(() => {                        var reader = new plus.io.FileReader();                        reader.onloadend = res => {//获取图片base64var speech = res.target.result; //base64图片this.onLogin(speech)this.imgData = speech;                        };                        //一定要使用plus.io.convertLocalFileSystemURL将target地址转换为本地文件地址,否则readAsDataURL会找不到文件                        reader.readAsDataURL(plus.io.convertLocalFileSystemURL(zipRes.target));                    }, 100);                },                function (error) {                    console.log('Compress error!', error);                }            );        },        //调用登录接口        onLogin(val) {            login({                "loginType": "faceLogin",                "image": val.split(',')[1]            }).then(async (res) => {                console.log(res)                if (res.code === '200' && res.data.clientUuid) {//识别成功              //登录逻辑                } else {//超过五次识别未成功,则取消识别                    this.faceNum += 1                    this.snapshotPusher()                    if (this.faceNum >= 5) {                        clearInterval(this.intervalId)                        uni.showToast({icon: 'none', title: '人员未登记!'                        })                        uni.navigateBack();                    }                }            })        },        Error(message) {            // 弹出错误提示            this.$refs.uNotify.show({                title: message,                type: 'error',                duration: '2000',            })        },        handleMeus(list) {            const menu = JSON.parse(JSON.stringify(homeMenuList))            menuNameList.forEach(item => {                menu[item].data = list[item] ? list[item] : []            })            console.log(menu, 'menu')            this.$store.commit('SET_MENULIST', menu)        }    },    onLoad(option) {        //#ifdef APP-PLUS        this.faceInit();        //#endif    },    onUnload() {        console.log('hide')        this.faceInitTimeout && clearTimeout(this.faceInitTimeout);        this.snapshTimeout && clearTimeout(this.snapshTimeout);        this.scanWin.hide();    },};script><style lang="scss" scoped>.tips_text {    margin-top: 320px;}style>

总结:更推荐使用nvue的使用方式,本人本地使用时vue方式拍照的时候会出现聚焦问题。

来源地址:https://blog.csdn.net/Pure_White520/article/details/131762805

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-移动开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯