I want to image process android front camera frames inside a service. I use OpenCV and therefore using CameraBridgeViewBase which asks for camera view. I dont want to record the video. i need to process each frame in real time.
any solution ?
I want to image process android front camera frames inside a service. I use OpenCV and therefore using CameraBridgeViewBase which asks for camera view. I dont want to record the video. i need to process each frame in real time.
any solution ?
According to the examples of fadden available (have a look here), you can do it using a SurfaceTexture
instead of a SurfaceView
for getting the frames. It was also answered here before, but unfortunately never validated.
I could get frames from a service this way.