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.
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.
Copyright © 2021 Jogjafile Inc.
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.