Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying hard to emulate the basic functionality of the built in camera app. Thus far I have become stuck on the 'tap to focus' feature.

I have a UIView from which I am collecting UITouch events when a single finger is tapped on the UIView. This following method is called but the camera focus & the exposure are unchanged.

-(void)handleFocus:(UITouch*)touch
{ 
     if( [camera lockForConfiguration:nil] )
     {     
          CGPoint location = [touch locationInView:cameraView];

          if( [camera isFocusPointOfInterestSupported] )
               camera.focusPointOfInterest = location;

          if( [camera isExposurePointOfInterestSupported] )
               camera.exposurePointOfInterest = location;


          [camera unlockForConfiguration];
          [cameraView animFocus:location];
     }
}

'camera' is my AVCaptureDevice & it is non-nil. Can someone perhaps tell me where I am going wrong?

Clues & boos all welcome.

M.

share|improve this question

1 Answer

up vote 17 down vote accepted

This snippet might help you...There is a CamDemo provided by apple floating around which allows you to focus, change exposure while tapping, set flash, swap cameras and more, it emulates the camera app pretty well, not sure if youll be able to find it since it was part of wwdc, but if u leave some email address in the comments i can email you the sample code...

- (void) focusAtPoint:(CGPoint)point

{

    AVCaptureDevice *device = [[self videoInput] device];

    if ([device isFocusPointOfInterestSupported] && [device isFocusModeSupported:AVCaptureFocusModeAutoFocus]) {

        NSError *error;

        if ([device lockForConfiguration:&error]) {

            [device setFocusPointOfInterest:point];

            [device setFocusMode:AVCaptureFocusModeAutoFocus];

            [device unlockForConfiguration];

        } else {

            id delegate = [self delegate];

            if ([delegate respondsToSelector:@selector(acquiringDeviceLockFailedWithError:)]) {

                [delegate acquiringDeviceLockFailedWithError:error];

            }

        }        

    }

}
share|improve this answer
I'd be very glad for that source code. Catch me at codehammer <at> suremail <dot> info. My thanks again. – Martin Cowie Jul 27 '10 at 19:30
alright, sent . – Daniel Jul 27 '10 at 19:41
2  
@Martin Cowie - Actually, the source code is available as part of the WWDC 2010 videos. Simply login to get the videos, go to iTunes, and a link to download the sample code will appear in the upper-right: developer.apple.com/videos/wwdc/2010 You will be looking for the AVCam and AVCamDemo sample applications, I believe. – Brad Larson Jul 27 '10 at 22:41
@Brad Larson - Good heavens! Enough sample code to keep me happy for a good while. Thanks Brad! – Martin Cowie Jul 29 '10 at 15:28
@Daniel Hi, sir, could you pls send me a copy of that sample code? tangqiaoboy<at>gmail.com . Thanks very much. – tangqiaoboy Apr 11 '12 at 8:08
show 6 more comments

protected by Brad Larson Aug 27 '12 at 2:05

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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