yuvToMat
yuvToMat copied to clipboard
High-performance library for converting YUV_420_888 Android Camera images to OpenCV RGB Mats
` Yuv format is not supported: Yuv(resource=androidx.camera.core.SettableImageProxy@f251aa8, width=864, height=480, y=Plane(buffer=java.nio.DirectByteBuffer[pos=0 lim=430048 cap=430048], pixelStride=1, rowStride=896), u=Plane(buffer=java.nio.DirectByteBuffer[pos=0 lim=215007 cap=215007], pixelStride=2, rowStride=896), v=Plane(buffer=java.nio.DirectByteBuffer[pos=0 lim=215007 cap=215007], pixelStride=2, rowStride=896)) ` Hello, can you suggest what...
Hello, I think it's important to leave links to alternative solutions. I hope @sellmair or @nasirky will find a minute to take a look and approve this PR.
CameraX api has ImageProxy class which you obtain from ImageAnalyzer. It has the same api as usual Image. So adding support is just duplicating several constructors. And I would create...
The problem happens when set the resolution to 2160x1080.
Thanks for this awesome project (and of course the OpenCV package for gradle)! This really saved me so much trouble. I can convert my images to Mats, but when I...