-
Notifications
You must be signed in to change notification settings - Fork 780
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: Add support for YUV_420_888 Image format. #732
base: develop
Are you sure you want to change the base?
Conversation
There's still the open issue of cleaning up the texture. I'd appreciate some feedback on how to change the API accordingly. I don't think there's a way around that. |
If you allow me, I will share with you the method I used to solve a similar problem. Maybe it can help:
|
I fixed the resource leak by making @wantroba thanks for providing an alternative solution! I feel it targets a slightly different use case (saving to file) as the one I target here (using as ML-Kit input). |
Casting the bytes to a type directly is not possible, thus allocating a new texture is necessary (and costly). But on the bright side, we avoid the conversion inside the camera plugin [0]. Or any other custom conversion code in dart, which is likely more costly. [0] https://github.com/flutter/packages/blob/d1fd6232ec33cd5a25aa762e605c494afced812f/packages/camera/camera_android/android/src/main/java/io/flutter/plugins/camera/media/ImageStreamReaderUtils.java#L35
@@ -53,9 +61,36 @@ public static InputImage getInputImageFromData(Map<String, Object> imageData, | |||
rotationDegrees, | |||
imageFormat); | |||
} | |||
if (imageFormat == ImageFormat.YUV_420_888) { | |||
// This image format is only supported in InputImage.fromMediaImage, which requires to transform the data to the right java type. | |||
// TODO: Consider reusing the same Surface across multiple calls to save on allocations. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reusing this ImageWriter across multiple calls, thus avoiding the allocation, would make this likely more performant. Could any of the reviewers take a look?
Is it something that could be left as a TODO and fixed later?
May I ask what was the reason for closing this PR? It did add an additional feature, which allows clients to move to the better supported |
my mistake, could you resolve the conflicts. |
could you resolve the conflicts |
Casting the bytes to a type directly is not possible, thus allocating a new texture is necessary (and costly).
But on the bright side, we avoid the conversion inside the camera plugin [0].
[0] https://github.com/flutter/packages/blob/d1fd6232ec33cd5a25aa762e605c494afced812f/packages/camera/camera_android/android/src/main/java/io/flutter/plugins/camera/media/ImageStreamReaderUtils.java#L35