Header Banner
Next Reality Logo
Next Reality
Augmented & Mixed Reality News, Rumors & Dev Guides
nextreality.mark.png
Apple Snap AR Business Google Instagram | Facebook NFT HoloLens Magic Leap Hands-On Smartphone AR The Future of AR Next Reality 30 AR Glossary ARKit Dev 101 What Is AR? Mixed Reality HoloLens Dev 101 Augmented Reality Hololens How-Tos HoloLens v. Magic Leap v. Meta 2 VR v. AR v. MR

Building Next Reality: The Terms You Need to Know to Work in ARKit

Jun 30, 2017 01:28 AM
Jun 30, 2017 01:32 AM
"Building Next Reality: The Terms You Need to Know to Work in ARKit" cover image

In the first part of this series, we looked at the surface detection that is provided by the ARKit. We looked at how it worked and covered some of the tools that could help us determine what is not working; when it doesn't. Now let's take this to the next step.

Before we can delve deep into the actual code itself, which we will do in the next part of this series, we need to learn a bit about some of the terms and data structures that the ARKit is using. Otherwise, it will be tough to decipher what we are looking at in code.

SceneKit — This is a high-level development system designed to simplify and speed up the 3D app creation process by using scene descriptions to add particle effect, animations, physics simulation, and physically based rendering.

SCNView — A view for displaying 3D SceneKit content.

ARSession — This component handles the major processes needed to make the device work with the ARKit. Understanding the data from the sensors, controlling the camera and analyzing the images. This help make a good point of the work invisible to developers.

ARSCNView — The view used for displaying AR content from the ARKit, using the 3D SceneKit content. This view automatically renders the camera view as the background. The world coordinates of the SceneKit work in unison with the AR world coordinates. This SceneKit take out a lot of work by automatically using the iPhone's built-in sensors to help match movement to the movement of the world around you.

ARAnchor — This data type is a position and orientation in the real world. Similar to what other systems, like the HoloLens and Unity, use for collecting information to help tie the digital world to the physical one.

ARPlaneAnchor — A structure derived from ARAnchor, when surfaces are detected ARPlaneAnchor stores the alignment, center, and extents. The center point, in this case, would be considered its position.

hitTest(_:types:) — A method used with ARSCNView to search for real-world objects, surfaces and ARAnchors in the current camera view.

ARHitTestResults — When a surface is found, this is the information that is returned from a single point.

ARHitTestResults. ResultTypes — The possible responses from the hitTest.

  • featurePoint — A point that is considered part of a continuous surface. With no current anchor attached.
  • estimatedHorizonPlane — A planar surface with no anchor that is perpendicular to gravity.
  • existingPlane — A known plane in the scene, independent of the plane's size.
  • existingPlaneUsingExtent —A known plane in the scene, with a known size.

In the next part of the series, having some idea of what these components and data structures do, will go a great deal toward helping up understand what is happing as we develop the Building Next Reality app. See you next week when we get this party started. Until then this is Jason signing off.

Build Next Reality: Succeeded

Building Next Reality is an AR development series. In this first section of the series, we will be building our very own ARKit application for iPhone and iPad devices. Leave comments to let us know what you like, what you don't and what you would like to see.

You already know how to use your phone. With Gadget Hacks' newsletter, we'll show you how to master it. Each week, we explore features, hidden tools, and advanced settings that give you more control over iOS and Android than most users even know exists.

Sign up for Gadget Hacks Weekly and start unlocking your phone's full potential.

Related Articles

Comments

No Comments Exist

Be the first, drop a comment!