1)Android 平台
const context = wx.createCameraContext(this);
const listener = context.onCameraFrame(frame => {
// 使用 wx.createInferenceSession 相关 API实现 图片帧推理,没问题
});
2) IOS 平台
使用上述代码,图片帧回调超级慢,文档推荐使用 worker 实现,但是 worker 中无法使用 wx.createInferenceSession等 相关 API ,怎么办?
Worker.getCameraFrameData() 安卓端,可以使用时因为这个