Is there a way to get a timestamp of when the Android Camera Preview Frame was captured?

  1. no Camera method is returning a timestamp
  2. you can not access Camera from native code
  3. buffer size is not static (depends on the min preview size acquired from the camera - when and if the method is working) and if there are more frames in the queue then there are preview buffers they are discarded
  4. frame rate that was set (again, if/when the method is working) is just a hint to the system, camera can ignore the value. Same goes for the frame rate the camera is returning.

I am doing some heavy image processing in real time, and the small errors when added together are a real problem.

link|improve this question

67% accept rate
Are you referring to the onPreviewFrame callback, right? There should be EXIF data in the byte[] that gets passed, assuming it is a JPEG at least. – michaelg Jan 27 at 21:25
As far as I can tell, there's no exif in the data, just raw image – LambergaR Jan 27 at 22:25
Per the lack of EXIF: Not sure if this will work, but have you tried explicitly setting the preview format to ImageFormat.jpeg? The NV21 format (default) might not have anywhere to store the EXIF data. – Alexander Lucas Jan 31 at 21:35
I could do that, it just doesn't make sense performance-wise. The NV21 format is easier to process (at least in our case) and the processing algorithm would get slower since we would need to parse additional data from the image. – LambergaR Feb 1 at 19:36
feedback

1 Answer

The only way I know to do this is use a SurfaceTexture instead of the preview callback.

The SurfaceTexture has a getTimestamp() method that returns nanoseconds since some unspecified (but constant) time.

Unfortunately, the SurfaceTexture is an OpenGL external texture, so it's not as easy to work with the preview callback.

On the other hand, it's substantially more CPU efficient: The preview callback does color conversion and image reshaping in software, whereas one can use the OpenGL ES2 features to do significant amounts of image processing on the GPU.

link|improve this answer
Would be great, but there's one problem ... "Since: API Level 11" is something you're not so happy to see when you're trying to support older platforms :) – LambergaR Feb 6 at 3:03
Alas, I'm not aware of it being possible at all prior to API level 11. :( – Michael O Feb 11 at 21:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.