Which View is the best choice while overlaying an image on camera preview on Android?

252 Views Asked by At

I want to draw a picture over on camera preview. I want to know which view(SurfaceView, TextureView, GLSurfaceView, etc.) is the best one (performance) for camera preview.

And if you can explain how to draw it, that will be great.

Thanks.

1

There are 1 best solutions below

2
On

Your best choice would be to use OpenGL and SurfaceTexture to capture camera preview in the same view. Note that if you want to synchronize the preview with your overlay, you must delay the camera preview. For that, you can implement onPreviewCallback and push its buffer to a texture, while hiding the native texture that comes directly from camera.