Tutorial

ARKit Tutorial: Detecting Horizontal Planes and Adding 3D Objects with SceneKit


Augmented reality has the power to amplify the world in ways never possible before. The way in which we interact with our world may never be the same again. With the release of iPhone X, the world is ready to embrace AR now more than ever before. We are at a special time in history and just at the beginning of something huge. The potential of AR is endless.

Prerequisites

This tutorial builds on top of knowledge from previous ARKit tutorials. If you haven’t already, you can check out the previous tutorial. It would also be great if you can find a flat surface for your app.

What we are going to learn

In this tutorial, our focus is on horizontal plane in ARKit. We are going to first create an ocean (horizontal plane). Then place a nice ship on top (3D object).

arkit-ship-1

Or create a fleet of ships with lighting!

arkit-horizontal-plane-2

Along the way, you will learn about horizontal plane in ARKit. It is my hope that by the end of this tutorial, you will feel more comfortable utilizing horizontal plane when working on your ARKit project.

What’s a Horizontal Plane

So what exactly are we talking about when we talk about horizontal plane in ARKit? When we detect a horizontal plane in ARKit — we technically detect an ARPlaneAnchor. So what is an ARPlaneAnchor? An ARPlaneAnchor is basically an object containing information about the detected horizontal plane.

Here is a more formal description of ARPlaneAnchor from Apple:

Information about the position and orientation of a real-world flat surface detected in a world-tracking AR session.

- Apple’s Documentation

Let’s begin to build the app

We will begin with a starter project, so we can focus on the implementation of ARKit. Open the starter project in Xcode to take a look. I have already created the ARSCNView in the storyboard.

arkit-starter-project

Build and run the starter project to have a quick test. You should see the following on your iOS device:

arkit-horizontal-plane-3

Make sure you should tap OK to grant the access to the camera. You should then see your camera’s view.

Horizontal Planes Detection

Detecting a horizontal plane is simple. Thanks to the “appley” Apple Engineers.

Simply add the following inside the setUpSceneView() method of ViewController:

By setting the planeDetection property of ARWorldTrackingConfiguration to .horizontal, this tells ARKit to look for any horizontal plane. Once ARKit detects a horizontal plane, that horizontal plane will be added into sceneView’s session.

In order to detect the horizontal plane, we have to adopt the ARSCNViewDelegate protocol. Below the ViewController class, create a ViewController class extension to implement the protocol:

Now inside of the class extension, implement the renderer(_:didAdd:for:) method:

This protocol method gets called every time the scene view’s session has a new ARAnchor added. An ARAnchor is an object that represents a physical location and orientation in 3D space. We will use the ARAnchor later for detecting a horizontal plane.

Next, head back to setUpSceneView(). Assign the sceneView’s delegate to your ViewController inside of setUpSceneView().

If you’d like, you can also set sceneView’s debug options to show feature points in the world. This could help you find a place with enough feature points to detect a horizontal plane. A horizontal plane is made up of many feature points. Once enough feature points has been detected to recognize a horizontal surface, renderer(_:didAdd:for:) will be called.

Your setUpSceneView() method should now look like this:

Horizontal Planes Visualization

Now that the app gets notified every time a new ARAnchor is being added onto sceneView, we may be interested in seeing what that newly added ARAnchor looks like.

Hence, update the renderer(_:didAdd:for:) method like this:

Let’s me walk you through the code line by line:

  1. We safely unwrap the anchor argument as an ARPlaneAnchor to make sure that we have information about a detected real world flat surface at hand.
  2. Here, we create an SCNPlane to visualize the ARPlaneAnchor. A SCNPlane is a rectangular “one-sided” plane geometry. We take the unwrapped ARPlaneAnchor extent’s x and z properties and use them to create an SCNPlane. An ARPlaneAnchor extent is the estimated size of the detected plane in the world. We extract the extent’s x and z for the height and width of our SCNPlane. Then we give the plane a transparent light blue color to simulate a body of water.
  3. We initialize a SCNNode with the SCNPlane geometry we just created.
  4. We initialize x, y, and z constants to represent the planeAnchor’s center x, y, and z position. This is for our planeNode’s position. We rotate the planeNode’s x euler angle by 90 degrees in the counter-clockerwise direction, else the planeNode will sit up perpendicular to the table. And if you rotate it clockwise, David Blaine will perform a magic illusion because SceneKit renders the SCNPlane surface using the material from one side by default.
  5. Finally, we add the planeNode as the child node onto the newly added SceneKit node.

Build and run the project. You should now be able to detect and visualize the detected horizontal plane.

arkit-detected-plane

Horizontal Planes Expansion

With ARKit receiving additional information about our environment, we may want to expand our previously detected horizontal plane(s) to make use of a larger surface or have a more accurate representation with the new information.

Hence, implement renderer(_:didUpdate:for:):

This method gets called every time a SceneKit node’s properties have been updated to match its corresponding anchor. This is where ARKit refines its estimation of the horizontal plane’s position and extent.

The node argument gives us the updated position of the anchor. The anchor argument gives us the anchor’s updated width and height. With these two arguments, we can update the previously implemented SCNPlane to reflect the updated position with the updated width and height.

Next, add the following code inside renderer(_:didUpdate:for:):

Again, let’s me go through the code above with you:

  1. First, we safely unwrap the anchor argument as ARPlaneAnchor. Next, we safely unwrap the node’s first child node. Lastly, we safely unwrap the planeNode’s geometry as SCNPlane. We are simply extracting the previously implemented ARPlaneAnchor, SCNNode, and SCNplaneand updating its properties with the corresponding arguments.
  2. Here we update the plane’s width and height using the planeAnchor extent’s x and z properties.
  3. At last, we update the planeNode’s position to the planeAnchor’s center x, y, and z coordinates.

Build and run to check out expanding horizontal plane implementation.

arkit-expand-plane

Adding Objects on Horizontal Planes

Now let’s add a ship on top of the horizontal plane. Inside of the starter project, I have already bundled a 3D ship object for you to use.

Insert the following method in the ViewController class to place a ship on top of the horizontal plane:

There are many familiar faces here as explained in the previous tutorial, so I will not go through the code line by line. If you want to learn more about that, check out the previous tutorial. The only difference now is that we pass in a different argument in the types parameter to detect an existing plane anchor in the sceneView.

Before the cherry on top, add the following code:

This method will add a tap gesture recognizer to sceneView.

For the cherry on top, call the following method inside of viewDidLoad() to add a tap gesture recognizer to sceneView:

Now if you build and run, you should be able to detect a horizontal plane, visualize it, and place an insanely cool ship on top.

ARKit Ship

Or a fleet of ships (with lighting).

arkit-ship-fleet

You can enable lighting by uncommenting configureLighting() inside of viewDidLoad(). The function is very simple with two lines of code to enable lighting:

Summary

I hope you have enjoyed and learned something valuable from this tutorial. If you have, please let me know by sharing this tutorial. Lastly if you have any comment, question, or recommendation, feel free to drop them below.

I’m not sure if a single person would do this, but you can comment with an image. I’d love to know where you guys are placing your ship!

For your reference, you can download the final project on GitHub.

iOS
Learn SwiftUI Using Swift Playgrounds for iPad and Mac
SwiftUI
How to Use ScrollViewReader to Perform Programmatic Scrolling
iOS
How to Customize the Appearance of SwiftUI Toggle
Shares