Search code examples
flutterarcore

using flutter arcore with camera plugin at the same time


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 .


Solution

  • 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.