Compatibility Between ARKit and Optical Zoom

Hello,

I am a developer currently working on an AR application using ARKit. I aim to implement a Zoom feature that allows users to enlarge and reduce objects within the AR scene while simultaneously measuring the distance to those objects. Specifically, I want to incorporate Optical Zoom to provide a more natural and precise user experience. I have considered several approaches and would appreciate your advice on the most effective methods.

Approaches Being Considered:

Using UIPinchGestureRecognizer to Adjust the Camera's Field of View Modifying the scale Property of SCNNode to Enlarge/Reduce Specific Objects Leveraging AVFoundation to Control the Camera's Optical Zoom Questions:

Compatibility Between ARKit and Optical Zoom: Is it feasible to control the camera's optical zoom using AVFoundation while utilizing ARKit's features? What should be considered when integrating these two frameworks?

Integrating Object Distance Measurement with Zoom Functionality: What is the most effective approach to measure and display the distance to an object in real-time when a user zooms in on it?

User Experience Considerations: Do you have any UI/UX design tips for implementing optical zoom to ensure a natural and intuitive experience? For example, how can visual feedback for zoom actions and distance measurements be effectively presented to users?

Performance Optimization: What optimization strategies can minimize potential performance issues when implementing both optical zoom and distance measurement features simultaneously?

Example Code and Reference Materials: Could you share any example code or reference materials that demonstrate similar functionalities?

Thank you.

Example Code Request:

If possible, providing sample code that integrates optical zoom with distance measurement would be extremely helpful.

Reference Links:

Please share any tutorials or resources that demonstrate the combined use of ARKit and AVFoundation.

Answered by DTS Engineer in 807991022

Hello Jay Lee,

Compatibility Between ARKit and Optical Zoom: Is it feasible to control the camera's optical zoom using AVFoundation while utilizing ARKit's features? What should be considered when integrating these two frameworks?

Optical zoom on iOS devices is achieved by switching between the different lenses. You do not have control over this during an ARSession, thus you cannot implement optical zoom and run an ARSession. You are welcome to file an enhancement request for the functionality you are trying to build using Feedback Assistant.

Integrating Object Distance Measurement with Zoom Functionality: What is the most effective approach to measure and display the distance to an object in real-time when a user zooms in on it?

User Experience Considerations: Do you have any UI/UX design tips for implementing optical zoom to ensure a natural and intuitive experience? For example, how can visual feedback for zoom actions and distance measurements be effectively presented to users?

Performance Optimization: What optimization strategies can minimize potential performance issues when implementing both optical zoom and distance measurement features simultaneously?

There are a lot of different topics here, in general, I would recommend breaking these down into their own forums threads.

To briefly answer each one here:

  1. One way to implement "object distance measurement" would be to determine what area of the camera image constitutes the object (perhaps by using an object detector), and then utilizing the depth values in the corresponding area of a depth map.

  2. As I mentioned previously, you cannot implement optical zoom for an ARSession. However, if you decide that you don't need an ARSession, and you are using AVCaptureSession directly, then you should read up on the primary constituent device switching behaviors. In short, the system will decide when to switch to a particular lens if you are using a virtual capture device (like the triple camera for example).

  3. For performance optimization, I always recommend the general approach outlined in Improving your app's performance.

Best regards,

Greg

Hello Jay Lee,

Compatibility Between ARKit and Optical Zoom: Is it feasible to control the camera's optical zoom using AVFoundation while utilizing ARKit's features? What should be considered when integrating these two frameworks?

Optical zoom on iOS devices is achieved by switching between the different lenses. You do not have control over this during an ARSession, thus you cannot implement optical zoom and run an ARSession. You are welcome to file an enhancement request for the functionality you are trying to build using Feedback Assistant.

Integrating Object Distance Measurement with Zoom Functionality: What is the most effective approach to measure and display the distance to an object in real-time when a user zooms in on it?

User Experience Considerations: Do you have any UI/UX design tips for implementing optical zoom to ensure a natural and intuitive experience? For example, how can visual feedback for zoom actions and distance measurements be effectively presented to users?

Performance Optimization: What optimization strategies can minimize potential performance issues when implementing both optical zoom and distance measurement features simultaneously?

There are a lot of different topics here, in general, I would recommend breaking these down into their own forums threads.

To briefly answer each one here:

  1. One way to implement "object distance measurement" would be to determine what area of the camera image constitutes the object (perhaps by using an object detector), and then utilizing the depth values in the corresponding area of a depth map.

  2. As I mentioned previously, you cannot implement optical zoom for an ARSession. However, if you decide that you don't need an ARSession, and you are using AVCaptureSession directly, then you should read up on the primary constituent device switching behaviors. In short, the system will decide when to switch to a particular lens if you are using a virtual capture device (like the triple camera for example).

  3. For performance optimization, I always recommend the general approach outlined in Improving your app's performance.

Best regards,

Greg

Compatibility Between ARKit and Optical Zoom
 
 
Q