QR codes in Unreal

If you're new to working with QR codes, you may want to review our QR code tracking overview.

The HoloLens 2 can see QR codes in world space using the webcam, which renders them as holograms at each code's real-world position. HoloLens 2 can also render holograms in the same location on multiple devices to create a shared experience. Make sure you're following the best practices for adding QR codes to your applications:

  • Quiet zones
  • Lighting and backdrop
  • Size, distance, and angular position

Pay special attention to the environment considerations when QR codes are being placed in your app. You can find more information on each of these topics and instructions on how to download the required NuGet package in our QR code tracking overview document.

Caution

QR codes are the only type of images that can be tracked by HoloLens out of the box - Unreal's UARTrackedImage module isn't supported on HoloLens. If you need to track custom images, you can access the device's webcam and process images using a third party image recognition library.

Enabling QR detection

Since the HoloLens 2 needs to use the webcam to see QR codes, you'll need to enable it in the project settings:

  • Open Edit > Project Settings, scroll to the Platforms section, and select HoloLens.
    • Expand the Capabilities section and check Webcam.  
  • You'll also need to opt into QR code tracking by adding an ARSessionConfig asset.

If you're using UE 4.26, we recommend using the following blueprint setup to add a small delay, because QR code tracking must be initialized AFTER starting an AR Session:

Blueprint of the Toggle ARCapture function with delay

Setting up a tracked QR code

QR codes are surfaced through Unreal’s AR tracked geometry system as a tracked image. To get this working, you'll need to:

  1. Create an Actor Blueprint and add an ARTrackableNotify component:

QR AR Trackable Notify

  1. Select ARTrackableNotify and expand the Events section in the Details panel:

QR Events

  1. Click + next to On Add Tracked Geometry to add the node to the Event Graph.

Add node to On Add Tracked Geometry

Using a tracked QR code

The Event Graph in the following image shows the OnUpdateTrackedImage event being used to render a point in the center of a QR code and print out its data.

Here's what's going on:

  1. First, the tracked image is cast to an ARTrackedQRCode to check that the current updated image is a QR code.
  2. The encoded data is retrieved from the QRCode variable. You can get the top-left of the QR code from the location of GetLocalToWorldTransform and the dimensions with GetEstimateSize.

You can also get the coordinate system for a QR code in code.

Finding the unique ID

Every QR code has a unique guid ID, which you can find by:

  • Dragging and dropping the As ARTracked QRCode pin and searching for Get Unique ID.

QR Guid

Next Development Checkpoint

If you're following the Unreal development checkpoint journey we've laid out, you can proceed to the next topic:

Or jump directly to deploying your app on a device or emulator:

You can always go back to the Unreal development checkpoints at any time.

See also