小程序
小游戏
企业微信
微信支付
扫描小程序码分享
想做人脸识别,调用了camera组件来录像,获取到实时帧数据后,不知道该怎么使用?
每一帧是一个图像?
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
camera 有录像的接口,直接调用按个接口就可以。帧数据是用来做实时图像处理的。
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
用这个接口返回的数据转换成base64编码后,上传到AI平台,返回image format error图片格式错误
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
camera 有录像的接口,直接调用按个接口就可以。帧数据是用来做实时图像处理的。
用这个接口返回的数据转换成base64编码后,上传到AI平台,返回image format error图片格式错误
wx.canvasPutImageData({
canvasId: 'firstCanvas',
data:data,
x: 0,
y: 0,
width: app.globalData.base_data.width,
success(res){
wx.canvasToTempFilePath({
x: 0,
y: 0,
width: self.data.cameraWidth,
height: self.data.height,
destWidth: app.globalData.base_data.width,
destHeight: app.globalData.base_data.height,
canvasId: 'myCanvas',
success(res) {
self.setData({ image1Src:res.tempFilePath});
self.updataPhoto();
}
})