- wx.createVKSession人脸识别传入onCameraFrame实时帧数据识别不到人像?
// pages/audio/index.ts Page({ /** * 页面的初始数据 */ data: { audioUrl: '', videoUrl: '' }, /** * 生命周期函数--监听页面加载 */ onLoad() { videoCtx = wx.createCameraContext(); let count = 0; listener = videoCtx.onCameraFrame((frame:any) => { count++; if (count === 10) { this.detectFace(frame); count = 0; } }); VKSession = wx.createVKSession({ version: 'v1', track: { plane: { mode: 1 }, face: { mode: 2 } } }); VKSession.on('updateAnchors', (anchors:any) => { console.warn('anchors', anchors); }) }, handleStart() { videoCtx.startRecord({ timeoutCallback: (res:any) => { console.warn(res); this.setData({ videoUrl: res.tempVideoPath }) }, timeout: 300, complete: (res:any) => { console.warn('videoCtx.startRecord complete', res); } }); VKSession.start((errno:any) => { console.warn('VKSession.start errno', errno); }); listener.start(); }, handleStop() { listener.stop({ complete: (res:any) => { console.warn('listener.stop', res); } }); VKSession.stop(); videoCtx.stopRecord({ compressed: true, success: (res:any) => { console.warn('videoCtx.stopRecord success', res); this.setData({ videoUrl: res.tempVideoPath }) }, fail: (res:any) => { console.warn('videoCtx.stopRecord fail', res); } }); }, async detectFace(frame:any) { console.warn(frame.data); VKSession.detectFace({ frameBuffer: frame.data, width: frame.width, height: frame.height, scoreThreshold: 0.8, sourceType: 0, modelMode: 1 }); }, handleError() {}, }); [图片] 代码片段: https://developers.weixin.qq.com/s/yoorZhmf7aJ6
2023-06-26 - 最新版本开发工具引入tfjsPlugin报错
[图片]
2022-06-15 - fileStorageIO 文件缓存提示无权限
TensorFlowJS插件使用fileStorageIO 文件缓存模型文件,提示无权限读写文件 [图片][图片]
2021-07-20 - 升级开发工具版本后打包代码体积变大?
升级开发者工具到1.05.2107090版本后,打包代码增加20kb
2021-07-16 - 使用PoseNet时如何缓存模型,减少模型网络请求
在使用posenet.load 时如何缓存模型,达到没吃load时减少模型的网络请求
2021-06-08 - live-pusher playBGM() ios系统不能播放同一音频文件?
liveContext = wx.createLivePusherContext(); liveContext.playBGM(); 在iphone是手机里面播放同一音频文件无法播放?只能播放一次? [图片] https://developers.weixin.qq.com/s/ihkjNLmq7nm0
2020-12-21 - ios与Android 同样是算法执行效率ios远低于android ?
1、同样的算法ios远低于android 2、同样的数据量request,ios请求速度远低于android ios 机型 iphone7 、ios14.1 微信版本 7.0.18 [图片] android机型 :华为tas-an00 android29 微信版本7.0.20 [图片] ios截图: [图片][图片][图片] android截图: [图片][图片][图片][图片]
2020-11-23 - worker 中如何使用网络请求?
worker中如何发起服务器网络请求[图片]
2020-11-18 - live-pusher直播过程中切换网络推流失败,Android必现 ?
live-pusher直播过程中切换网络推流失败,Android必现 ? 切换网络后一直是3005 1102 1001 三个状态轮询
2020-11-10 - live-pusher 返回code -1313表示什么?
ive-pusher 返回code -1313表示什么? api文档没有说明
2020-09-23