Brendan Duncan
Brendan Duncan
The "File" referred to there is a zip archive file, not a disk file. The contents of the zip archive file can be a Uint8List. ``` final fileContents = Uint8List(...);...
The problem with this Dart implementation is that I wrote it designed for a web implementation, long before Flutter existed, and so it is very much memory centric and not...
I don't know the Firebase API at all, or what it's expecting for image data. Image.getBytes is in the format R8G8B8A8. I suspect FirebaseVisionImage only supports very specific formats. According...
Here is some code to convert NV21 *to* RGB. Should be possible to invert that. https://www.codepool.biz/nv21-bmp-java.html
Hi, yes, I accept pull requests. Thank you! On Sat, Aug 12, 2017, 8:04 AM Tobe O wrote: > I think this would be a relatively simple fix; may I...
That's great, I really appreciate the help. My time for dart programming has been pretty non existent for a while. The biggest remaining issue architecture wise is the ability to...
If you can make changes you need to adjustColor, I can add those changes. I took a quick look at it, saturation>1 doesn't work out so well in its current...
Probably adjust contrast after converting it back to RGB. The method I have in that adjustColor function is: ``` const avgLum = 0.5; final invContrast = 1.0 - contrast; r...
I won't have time to look into doing the function myself, work has been too busy, which is why I won't be able to do it any time soon. Sorry.
I won't have time to look into this in the near future, butI'd be more than happy for a PR if someone else wants to implement it. Sounds like a...