firebase_ml_vision dart BarcodeDetector.detectInImage #5609
Unanswered
serverplumber
asked this question in
Feature request
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is your feature request related to a problem? Please describe.
It looks to me like BarcodeDetector.detectInImage should return a
Stream<Barcode>
instead of aFuture<List<Barcode>>
.It seems easier to manipulate the
Barcodes
as aStream
so we can validate them while the camera is doing it's thing, which is delivered as aStream
.Describe the solution you'd like
this signature would be nice:
Stream<Barcode> detectInImage(Stream<FirebaseVisionImage> visionImageStream)
Beta Was this translation helpful? Give feedback.
All reactions