-
Notifications
You must be signed in to change notification settings - Fork 3.5k
[camera_android_camerax] Add support for NV21 image format #9644
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
Closed
Closed
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4,783 changes: 1,915 additions & 2,868 deletions
4,783
...mera_android_camerax/android/src/main/java/io/flutter/plugins/camerax/CameraXLibrary.g.kt
Large diffs are not rendered by default.
Oops, something went wrong.
157 changes: 157 additions & 0 deletions
157
...era_android_camerax/android/src/main/java/io/flutter/plugins/camerax/PlaneProxyUtils.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,157 @@ | ||
// Copyright 2013 The Flutter Authors. All rights reserved. | ||
// Use of this source code is governed by a BSD-style license that can be | ||
// found in the LICENSE file. | ||
// | ||
// Note: the code in this file is taken directly from the official Google MLKit example: | ||
// https://github.com/googlesamples/mlkit | ||
|
||
package io.flutter.plugins.camerax; | ||
|
||
import android.media.Image; | ||
import androidx.annotation.NonNull; | ||
import androidx.camera.core.ImageProxy.PlaneProxy; | ||
import java.nio.ByteBuffer; | ||
import java.util.List; | ||
|
||
// TODO(camsim99): make sure license stuff is handled | ||
public class PlaneProxyUtils { | ||
/** | ||
* Converts YUV_420_888 to NV21 bytebuffer. | ||
* | ||
* <p>The NV21 format consists of a single byte array containing the Y, U and V values. For an | ||
* image of size S, the first S positions of the array contain all the Y values. The remaining | ||
* positions contain interleaved V and U values. U and V are subsampled by a factor of 2 in both | ||
* dimensions, so there are S/4 U values and S/4 V values. In summary, the NV21 array will contain | ||
* S Y values followed by S/4 VU values: YYYYYYYYYYYYYY(...)YVUVUVUVU(...)VU | ||
* | ||
* <p>YUV_420_888 is a generic format that can describe any YUV image where U and V are subsampled | ||
* by a factor of 2 in both dimensions. {@link Image#getPlanes} returns an array with the Y, U and | ||
* V planes. The Y plane is guaranteed not to be interleaved, so we can just copy its values into | ||
* the first part of the NV21 array. The U and V planes may already have the representation in the | ||
* NV21 format. This happens if the planes share the same buffer, the V buffer is one position | ||
* before the U buffer and the planes have a pixelStride of 2. If this is case, we can just copy | ||
* them to the NV21 array. | ||
* | ||
* <p>https://github.com/googlesamples/mlkit/blob/master/android/vision-quickstart/app/src/main/java/com/google/mlkit/vision/demo/BitmapUtils.java | ||
*/ | ||
@NonNull | ||
public static ByteBuffer yuv420ThreePlanesToNV21( | ||
@NonNull List<PlaneProxy> yuv420888planes, int width, int height) { | ||
int imageSize = width * height; | ||
byte[] out = new byte[imageSize + 2 * (imageSize / 4)]; | ||
|
||
if (areUVPlanesNV21(yuv420888planes, width, height)) { | ||
// Copy the Y values. | ||
yuv420888planes.get(0).getBuffer().get(out, 0, imageSize); | ||
|
||
ByteBuffer uBuffer = yuv420888planes.get(1).getBuffer(); | ||
ByteBuffer vBuffer = yuv420888planes.get(2).getBuffer(); | ||
// Get the first V value from the V buffer, since the U buffer does not contain it. | ||
vBuffer.get(out, imageSize, 1); | ||
// Copy the first U value and the remaining VU values from the U buffer. | ||
uBuffer.get(out, imageSize + 1, 2 * imageSize / 4 - 1); | ||
} else { | ||
// Fallback to copying the UV values one by one, which is slower but also works. | ||
// Unpack Y. | ||
unpackPlane(yuv420888planes.get(0), width, height, out, 0, 1); | ||
// Unpack U. | ||
unpackPlane(yuv420888planes.get(1), width, height, out, imageSize + 1, 2); | ||
// Unpack V. | ||
unpackPlane(yuv420888planes.get(2), width, height, out, imageSize, 2); | ||
} | ||
|
||
return ByteBuffer.wrap(out); | ||
} | ||
|
||
/** | ||
* Copyright 2020 Google LLC. All rights reserved. | ||
* | ||
* <p>Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file | ||
* except in compliance with the License. You may obtain a copy of the License at | ||
* | ||
* <p>http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* <p>Unless required by applicable law or agreed to in writing, software distributed under the | ||
* License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, | ||
* either express or implied. See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
* <p>Checks if the UV plane buffers of a YUV_420_888 image are in the NV21 format. | ||
* | ||
* <p>https://github.com/googlesamples/mlkit/blob/master/android/vision-quickstart/app/src/main/java/com/google/mlkit/vision/demo/BitmapUtils.java | ||
*/ | ||
private static boolean areUVPlanesNV21(@NonNull List<PlaneProxy> planes, int width, int height) { | ||
int imageSize = width * height; | ||
|
||
ByteBuffer uBuffer = planes.get(1).getBuffer(); | ||
ByteBuffer vBuffer = planes.get(2).getBuffer(); | ||
|
||
// Backup buffer properties. | ||
int vBufferPosition = vBuffer.position(); | ||
int uBufferLimit = uBuffer.limit(); | ||
|
||
// Advance the V buffer by 1 byte, since the U buffer will not contain the first V value. | ||
vBuffer.position(vBufferPosition + 1); | ||
// Chop off the last byte of the U buffer, since the V buffer will not contain the last U value. | ||
uBuffer.limit(uBufferLimit - 1); | ||
|
||
// Check that the buffers are equal and have the expected number of elements. | ||
boolean areNV21 = | ||
(vBuffer.remaining() == (2 * imageSize / 4 - 2)) && (vBuffer.compareTo(uBuffer) == 0); | ||
|
||
// Restore buffers to their initial state. | ||
vBuffer.position(vBufferPosition); | ||
uBuffer.limit(uBufferLimit); | ||
|
||
return areNV21; | ||
} | ||
|
||
/** | ||
* Copyright 2020 Google LLC. All rights reserved. | ||
* | ||
* <p>Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file | ||
* except in compliance with the License. You may obtain a copy of the License at | ||
* | ||
* <p>http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* <p>Unless required by applicable law or agreed to in writing, software distributed under the | ||
* License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, | ||
* either express or implied. See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
* <p>Unpack an image plane into a byte array. | ||
* | ||
* <p>The input plane data will be copied in 'out', starting at 'offset' and every pixel will be | ||
* spaced by 'pixelStride'. Note that there is no row padding on the output. | ||
* | ||
* <p>https://github.com/googlesamples/mlkit/blob/master/android/vision-quickstart/app/src/main/java/com/google/mlkit/vision/demo/BitmapUtils.java | ||
*/ | ||
private static void unpackPlane( | ||
@NonNull PlaneProxy plane, int width, int height, byte[] out, int offset, int pixelStride) | ||
throws IllegalStateException { | ||
ByteBuffer buffer = plane.getBuffer(); | ||
buffer.rewind(); | ||
|
||
// Compute the size of the current plane. | ||
// We assume that it has the aspect ratio as the original image. | ||
int numRow = (buffer.limit() + plane.getRowStride() - 1) / plane.getRowStride(); | ||
if (numRow == 0) { | ||
return; | ||
} | ||
int scaleFactor = height / numRow; | ||
int numCol = width / scaleFactor; | ||
|
||
// Extract the data in the output buffer. | ||
int outputPos = offset; | ||
int rowStart = 0; | ||
for (int row = 0; row < numRow; row++) { | ||
int inputPos = rowStart; | ||
for (int col = 0; col < numCol; col++) { | ||
out[outputPos] = buffer.get(inputPos); | ||
outputPos += pixelStride; | ||
inputPos += plane.getPixelStride(); | ||
} | ||
rowStart += plane.getRowStride(); | ||
} | ||
} | ||
} |
30 changes: 30 additions & 0 deletions
30
...oid_camerax/android/src/main/java/io/flutter/plugins/camerax/PlaneProxyUtilsProxyApi.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
// Copyright 2013 The Flutter Authors. All rights reserved. | ||
// Use of this source code is governed by a BSD-style license that can be | ||
// found in the LICENSE file. | ||
|
||
package io.flutter.plugins.camerax; | ||
|
||
import androidx.camera.core.ImageProxy.PlaneProxy; | ||
import androidx.annotation.NonNull; | ||
import java.nio.ByteBuffer; | ||
import java.util.List; | ||
|
||
/** | ||
* ProxyApi implementation for {@link PlaneProxyUtils}. This class may handle instantiating native object | ||
* instances that are attached to a Dart instance or handle method calls on the associated native | ||
* class or an instance of that class. | ||
*/ | ||
class PlaneProxyUtilsProxyApi extends PigeonApiPlaneProxyUtils { | ||
PlaneProxyUtilsProxyApi(@NonNull ProxyApiRegistrar pigeonRegistrar) { | ||
super(pigeonRegistrar); | ||
} | ||
|
||
// List<? extends PlaneProxy> can be considered the same as List<PlaneProxy>. | ||
@SuppressWarnings("unchecked") | ||
@NonNull | ||
@Override | ||
public byte[] getNv21Plane(@NonNull List<? extends PlaneProxy> planeProxyList, long imageWidth, long imageHeight) { | ||
ByteBuffer nv21Bytes = PlaneProxyUtils.yuv420ThreePlanesToNV21((List<PlaneProxy>) planeProxyList, (int) imageWidth, (int) imageHeight); | ||
return nv21Bytes.array(); | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
This file is missing imports for
java.util.List
andjava.nio.ByteBuffer
, which will cause compilation errors.