同时使用 flutter arcore 和相机插件
我想将相机插件用于我的对象检测模型,如果模型检测到 3d 对象,则使用 arcore 来惩罚 3d 对象,但似乎 arcore 垄断了相机资源,有没有办法解决它。
I want to use the camera plugin for my object detection model and the arcore to amerce the 3d object if it was detected by the model but it seems that the arcore is monopolizing camera resources is there a way to go around it .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以从相机(CameraImage)获取数据并将其作为消息发送到新的隔离,您可以在其中使用模型为您执行推理(预测)。
You can get the data from the camera(CameraImage) and send it to a new isolate as a message where you can use your model to perform inference(prediction) for you.