Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9048447
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T12:09:32+00:00 2026-06-16T12:09:32+00:00

When I open the default camera app of iOS, I can see a big

  • 0

When I open the default camera app of iOS, I can see a big blue square whenever I make a change in the scene, which I think takes care of the exposure. If I click somewhere, it sets the exposure point of interest, but the new box is quite small. Is it that in iOS, default camera is using a bigger area to set exposure, but if I set an exposure point of interest explicitly, little area around the point will be considered?

What if I want to set the same settings (in terms of exposure) for my own app, which I am building using AVFoundation?
In documentation it is written that setiing exposure point is (0.5,0.5) and setting AVFoundationExposureModeCOntinuousAutoExposure as exposure mode is the default settings, but I think it is point metering not matrix metering..

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-16T12:09:33+00:00Added an answer on June 16, 2026 at 12:09 pm

    Quite so: at least on the three iDevices I have available for development (iPhone 4S, iPad 3, iPod touch 4G), the camera starts up in “pattern” metering mode (a.k.a. matrix mode). If I then set an exposure point of interest and set exposure mode to continuous as described in the AVFoundation docs, the camera switches to spot metering.

    You can check this out yourself; in the willOutputSampleBuffer call, fetch the EXIF data and look at the Metering Mode:

    NSDictionary* dict = (__bridge NSDictionary*) CMGetAttachment(sampleBuffer,
        kCGImagePropertyExifDictionary, NULL);
    ...
    int meterMode = 
        [[dict objectForKey:(id)kCGImagePropertyExifMeteringMode] integerValue];
    

    (Google “EXIF MeteringMode” for what the numbers mean.)

    The only way I’ve found to reset the camera to matrix mode, short of shutting down the app, is to programmatically reset the p.o.i. to exactly {0.5,0.5}:

    CGPoint poi;
    poi.x = poi.y = 0.5;
    if ([inputCamera lockForConfiguration:nil]) {
        inputCamera.exposurePointOfInterest = poi;
        inputCamera.exposureMode = AVCaptureExposureModeContinuousAutoExposure;
        [inputCamera unlockForConfiguration];
    }
    

    Any other value for the p.o.i. triggers spot mode.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am making an app in which I have to open default audio player.
I'm trying to emulate the animation seen in the default camera app, where a
In my app I'm attempting to use the front camera by default in a
I know in delphi you can open the default browser with: ShellExecute(self.WindowHandle,'open','www.website.com',nil,nil, SW_SHOWNORMAL); but
How can I open my Default.aspx page without Addressbar, Menubar & Statusbar?
By default the first accordion window stays open, how can I specify a different
I can open the default.aspx of a sub-site no problem.( file open,type or browse
My BizTalk (2006) orchestrations open by default in design view. I need to see
Once the default iPhone Camera app takes a photo, a preview appears and the
I successfully open Iphone default app with current user location but if user has

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.