rushio-consulting / flutter_camera_ml_vision

A flutter widget that show the camera stream and allow ML vision recognition on it, it allow you to detect barcodes, labels, text, faces...
MIT License
278 stars 107 forks source link

Explore isolate for ml vision processing #85

Open jaumard opened 4 years ago

jaumard commented 4 years ago

We might win some performance by using an isolate for processing the image with ml vision. For that we should create an isolate where we will send the frame to process and send the result back to the main isolate.

Note: we must not use compute or spawn a new isolate or pref will be awful

AndreyMay commented 4 years ago

Sounds like a good idea