Sample Scenes
Last updated
Was this helpful?
Last updated
Was this helpful?
Below are the sample scene part of MultiSet Unity SDK
Localization scene capture multiple camera frames and other sensor data in the localization API request to determine the devices' accurate pose. Since this method processes multiple frames, the localization time may take up to approximately 5 seconds. However, it provides an accurate pose even in challenging conditions where there are constant minor changes in the environment.
Two main parameters to change in this scene are the Number of Frames and the Capture interval between frames, higher number of frames results in better pose accuracy but will increase localization response time.
Single Frame Localization scene is a fundamental demonstration of how the platform performs localization within a mapped environment. This scene provides developers with a clear visualization of the SDK's core components. It showcases essential SDK prefabs, including the MultiSet SDK Manager which handles authentication, and the Map Localization Manager which manages the localization process.
This scene uses a single camera frame to localize against the map, ideal for situations where you want a quick response from localization API (~3 seconds) and don't require precise accuracy
Auto Localize: Automatic start localization at the start of the AR session
Relocalization: Trigger Localization request when AR session tracking is lost/limited; also trigger localization when the app comes from background.
Confidence Check: Enable this option to add a filter on localization response, higher confidence value will result in better accuracy but may reduce the number of successful localization attempts.
Confidence Threshold: if Confidence Check if enabled this
The Navigation Scene provides a template for building an AR navigation app using the MultiSet SDK. This scene includes pre-configured scripts and UI elements to handle Navigation Points of Interest (POIs), and utilizes Unity's NavMesh package for path detection and pathfinding.
Getting Started:
Open the Navigation sample scene and install the Unity Navigation package (com.unity.ai.navigation)
Replace the default Sample Map with your map Go to Map Space > Delete the sample Map > Add your own Map
Goto Map Space > NavigationContent > NavMesh and then Bake the surface to create paths
Create and configure POIs (Points of Interest) within your map for user navigation
Test your scene using the Editor simulator mode
Build and deploy to Android or iOS devices
Check out the below tutorial explaining the process end-to-end