I'm wondering if it's possible to have an instance of an AVCaptureSession and UIImagePicker both accessing the camera simultaneously.

I want to create an app that shows an ambient light meter/indicator as an overlay view of a UIImagePicker when the camera is active. I previously implemented this using UIGetScreenImage(), but Apple is now disallowing use of this private API in favor of AVCaptureSession. In my experimentation, AVCaptureSession seems to become suspended when UIImagePicker displays the camera view. Any ideas? Thanks!

link|improve this question

They cannot both access the camera device at the same time. How did UIGetScreenImage() solve this? are you wanting a snapshot with the meter included? – John Carter Nov 24 '10 at 19:28
Hey @John Carter, UIGetScreenImage() simply took a screen shot of the screen, which I could use to analyze the ambient light level of the image being shown from the camera. – Casey Flynn Nov 29 '10 at 22:45
OK, then what you need is AVCaptureSession running (to present your live image) and then if you want to take a photo you use AVCaptureStillImageOutput or (what I'm more familiar with) AVCaptureVideoDataOutput. Your meter should be able to be a realtime view much like I'm doing to convert the realtime view to B&W or other effects in Live Effects Cam – John Carter Nov 30 '10 at 1:36
feedback

2 Answers

up vote 3 down vote accepted

You shouldn't be using UIImagePicker for this at all. Instead you should be using an AVCaptureSession.

Here are two tutorials that will help you. The first one shows you how to setup a live camera view and overlay UI elements on top. You can find that here.

The second tutorial shows you how to capture an image from that live camera view. You can find that here.

link|improve this answer
feedback

I don't think so that they can not access the both thing simutaneoulsly,

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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