Searched refs:yuvImage (Results 1 – 3 of 3) sorted by relevance
244 Image yuvImage = null; in onImageAvailable() local247 yuvImage = mYuvReader.acquireNextImage(); in onImageAvailable()250 if (yuvImage != null) { in onImageAvailable()251 yuvImage.close(); in onImageAvailable()265 Plane lumaPlane = yuvImage.getPlanes()[0]; in onImageAvailable()266 Plane crPlane = yuvImage.getPlanes()[1]; in onImageAvailable()267 Plane cbPlane = yuvImage.getPlanes()[2]; in onImageAvailable()273 if (currentParams.mTimeStamps.contains(yuvImage.getTimestamp())) { in onImageAvailable()295 yuvImage.getWidth(), yuvImage.getHeight(), in onImageAvailable()300 0, 0, yuvImage.getWidth(), yuvImage.getHeight(), in onImageAvailable()[all …]
550 private static ByteBuffer convertToRGB(Image yuvImage) { in convertToRGB() argument552 int width = yuvImage.getWidth(); in convertToRGB()553 int height = yuvImage.getHeight(); in convertToRGB()556 Image.Plane yPlane = yuvImage.getPlanes()[0]; in convertToRGB()557 Image.Plane uPlane = yuvImage.getPlanes()[1]; in convertToRGB()558 Image.Plane vPlane = yuvImage.getPlanes()[2]; in convertToRGB()
38 YUVCanvas(YUVImage &yuvImage);