123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442 |
- /*===============================================================================
- Copyright (C) 2022 Immersal - Part of Hexagon. All Rights Reserved.
- This file is part of the Immersal SDK.
- The Immersal SDK cannot be copied, distributed, or made available to
- third-parties for commercial purposes without written permission of Immersal Ltd.
- Contact sdk@immersal.com for licensing requests.
- ===============================================================================*/
- using UnityEngine;
- using System;
- using System.Collections.Generic;
- using UnityEngine.XR.ARFoundation;
- using UnityEngine.XR.ARSubsystems;
- using System.Threading.Tasks;
- using Immersal.REST;
- namespace Immersal.AR
- {
- public class ARLocalizer : LocalizerBase
- {
- private static ARLocalizer instance = null;
- private bool m_localizationDebugLoggingEnabled = false;
- public bool LocalizationDebugLoggingEnabled
- {
- set => m_localizationDebugLoggingEnabled = value;
- get => m_localizationDebugLoggingEnabled;
- }
- private void LocalizerDebugLog(string message)
- {
- if (m_localizationDebugLoggingEnabled)
- {
- Debug.Log("[ARLocalizer]: "+message);
- }
- }
-
- private void ARSessionStateChanged(ARSessionStateChangedEventArgs args)
- {
- CheckTrackingState(args.state);
- }
- private void CheckTrackingState(ARSessionState newState)
- {
- isTracking = newState == ARSessionState.SessionTracking;
- if (!isTracking)
- {
- foreach (KeyValuePair<Transform, SpaceContainer> item in ARSpace.transformToSpace)
- item.Value.filter.InvalidateHistory();
- }
- }
- public static ARLocalizer Instance
- {
- get
- {
- #if UNITY_EDITOR
- if (instance == null && !Application.isPlaying)
- {
- instance = UnityEngine.Object.FindObjectOfType<ARLocalizer>();
- }
- #endif
- if (instance == null)
- {
- Debug.LogError("No ARLocalizer instance found. Ensure one exists in the scene.");
- }
- return instance;
- }
- }
- void Awake()
- {
- if (instance == null)
- {
- instance = this;
- }
- if (instance != this)
- {
- Debug.LogError("There must be only one ARLocalizer object in a scene.");
- UnityEngine.Object.DestroyImmediate(this);
- return;
- }
- }
- public override void Start()
- {
- base.Start();
- m_Sdk.RegisterLocalizer(instance);
- }
- public override void OnEnable()
- {
- base.OnEnable();
- #if !UNITY_EDITOR
- CheckTrackingState(ARSession.state);
- ARSession.stateChanged += ARSessionStateChanged;
- #endif
- }
- public override void OnDisable()
- {
- #if !UNITY_EDITOR
- ARSession.stateChanged -= ARSessionStateChanged;
- #endif
- base.OnDisable();
- }
- public override async void LocalizeServer(SDKMapId[] mapIds)
- {
- #if PLATFORM_LUMIN && UNITY_2020_1
- XRCameraImage image;
- #else
- XRCpuImage image;
- #endif
- ARCameraManager cameraManager = m_Sdk.cameraManager;
- var cameraSubsystem = cameraManager.subsystem;
- #if PLATFORM_LUMIN && UNITY_2020_1
- if (cameraSubsystem.TryGetLatestImage(out image))
- #else
- if (cameraSubsystem.TryAcquireLatestCpuImage(out image))
- #endif
- {
- stats.localizationAttemptCount++;
- JobLocalizeServerAsync j = new JobLocalizeServerAsync();
- byte[] pixels;
- Vector3 camPos = m_Cam.transform.position;
- Quaternion camRot = m_Cam.transform.rotation;
- Vector4 intrinsics;
- int channels = 1;
- int width = image.width;
- int height = image.height;
- ARHelper.GetIntrinsics(out intrinsics);
- ARHelper.GetPlaneData(out pixels, image);
- float startTime = Time.realtimeSinceStartup;
- Task<(byte[], icvCaptureInfo)> t = Task.Run(() =>
- {
- byte[] capture = new byte[channels * width * height + 8192];
- icvCaptureInfo info = Immersal.Core.CaptureImage(capture, capture.Length, pixels, width, height, channels);
- Array.Resize(ref capture, info.captureSize);
- return (capture, info);
- });
- await t;
- j.image = t.Result.Item1;
- j.intrinsics = intrinsics;
- j.mapIds = mapIds;
- j.OnResult += (SDKLocalizeResult result) =>
- {
- float elapsedTime = Time.realtimeSinceStartup - startTime;
- if (result.success)
- {
- LocalizerDebugLog(string.Format("Relocalized in {0} seconds", elapsedTime));
- int mapId = result.map;
- if (mapId > 0 && ARSpace.mapIdToMap.ContainsKey(mapId))
- {
- ARMap map = ARSpace.mapIdToMap[mapId];
- if (mapId != lastLocalizedMapId)
- {
- if (resetOnMapChange)
- {
- Reset();
- }
-
- lastLocalizedMapId = mapId;
- OnMapChanged?.Invoke(mapId);
- }
- MapOffset mo = ARSpace.mapIdToOffset[mapId];
- stats.localizationSuccessCount++;
-
- Matrix4x4 responseMatrix = Matrix4x4.identity;
- responseMatrix.m00 = result.r00; responseMatrix.m01 = result.r01; responseMatrix.m02 = result.r02; responseMatrix.m03 = result.px;
- responseMatrix.m10 = result.r10; responseMatrix.m11 = result.r11; responseMatrix.m12 = result.r12; responseMatrix.m13 = result.py;
- responseMatrix.m20 = result.r20; responseMatrix.m21 = result.r21; responseMatrix.m22 = result.r22; responseMatrix.m23 = result.pz;
-
- Vector3 pos = responseMatrix.GetColumn(3);
- Quaternion rot = responseMatrix.rotation;
- ARHelper.GetRotation(ref rot);
- pos = ARHelper.SwitchHandedness(pos);
- rot = ARHelper.SwitchHandedness(rot);
- Matrix4x4 offsetNoScale = Matrix4x4.TRS(mo.position, mo.rotation, Vector3.one);
- Vector3 scaledPos = Vector3.Scale(pos, mo.scale);
- Matrix4x4 cloudSpace = offsetNoScale * Matrix4x4.TRS(scaledPos, rot, Vector3.one);
- Matrix4x4 trackerSpace = Matrix4x4.TRS(camPos, camRot, Vector3.one);
- Matrix4x4 m = trackerSpace * (cloudSpace.inverse);
- if (useFiltering)
- mo.space.filter.RefinePose(m);
- else
- ARSpace.UpdateSpace(mo.space, m.GetColumn(3), m.rotation);
- double[] ecef = map.MapToEcefGet();
- LocalizerBase.GetLocalizerPose(out lastLocalizedPose, mapId, pos, rot, m.inverse, ecef);
- map.NotifySuccessfulLocalization(mapId);
- OnPoseFound?.Invoke(lastLocalizedPose);
- }
- }
- else
- {
- LocalizerDebugLog(string.Format("Localization attempt failed after {0} seconds", elapsedTime));
- }
- };
- await j.RunJobAsync();
- image.Dispose();
- }
- base.LocalizeServer(mapIds);
- }
- public override async void LocalizeGeoPose(SDKMapId[] mapIds)
- {
- ARCameraManager cameraManager = m_Sdk.cameraManager;
- var cameraSubsystem = cameraManager.subsystem;
- #if PLATFORM_LUMIN && UNITY_2020_1
- XRCameraImage image;
- if (cameraSubsystem.TryGetLatestImage(out image))
- #else
- XRCpuImage image;
- if (cameraSubsystem.TryAcquireLatestCpuImage(out image))
- #endif
- {
- stats.localizationAttemptCount++;
- JobGeoPoseAsync j = new JobGeoPoseAsync();
- byte[] pixels;
- Vector3 camPos = m_Cam.transform.position;
- Quaternion camRot = m_Cam.transform.rotation;
- int channels = 1;
- int width = image.width;
- int height = image.height;
- j.mapIds = mapIds;
- ARHelper.GetIntrinsics(out j.intrinsics);
- ARHelper.GetPlaneData(out pixels, image);
- float startTime = Time.realtimeSinceStartup;
- Task<(byte[], icvCaptureInfo)> t = Task.Run(() =>
- {
- byte[] capture = new byte[channels * width * height + 8192];
- icvCaptureInfo info = Immersal.Core.CaptureImage(capture, capture.Length, pixels, width, height, channels);
- Array.Resize(ref capture, info.captureSize);
- return (capture, info);
- });
- await t;
- j.image = t.Result.Item1;
- j.OnResult += (SDKGeoPoseResult result) =>
- {
- float elapsedTime = Time.realtimeSinceStartup - startTime;
- if (result.success)
- {
- LocalizerDebugLog(string.Format("Relocalized in {0} seconds", elapsedTime));
- int mapId = result.map;
- double latitude = result.latitude;
- double longitude = result.longitude;
- double ellipsoidHeight = result.ellipsoidHeight;
- Quaternion rot = new Quaternion(result.quaternion[1], result.quaternion[2], result.quaternion[3], result.quaternion[0]);
- LocalizerDebugLog(string.Format("GeoPose returned latitude: {0}, longitude: {1}, ellipsoidHeight: {2}, quaternion: {3}", latitude, longitude, ellipsoidHeight, rot));
- double[] ecef = new double[3];
- double[] wgs84 = new double[3] { latitude, longitude, ellipsoidHeight };
- Core.PosWgs84ToEcef(ecef, wgs84);
- if (ARSpace.mapIdToMap.ContainsKey(mapId))
- {
- ARMap map = ARSpace.mapIdToMap[mapId];
- if (mapId != lastLocalizedMapId)
- {
- if (resetOnMapChange)
- {
- Reset();
- }
-
- lastLocalizedMapId = mapId;
- OnMapChanged?.Invoke(mapId);
- }
- MapOffset mo = ARSpace.mapIdToOffset[mapId];
- stats.localizationSuccessCount++;
- double[] mapToEcef = map.MapToEcefGet();
- Vector3 mapPos;
- Quaternion mapRot;
- Core.PosEcefToMap(out mapPos, ecef, mapToEcef);
- Core.RotEcefToMap(out mapRot, rot, mapToEcef);
- Matrix4x4 offsetNoScale = Matrix4x4.TRS(mo.position, mo.rotation, Vector3.one);
- Vector3 scaledPos = Vector3.Scale(mapPos, mo.scale);
- Matrix4x4 cloudSpace = offsetNoScale * Matrix4x4.TRS(scaledPos, mapRot, Vector3.one);
- Matrix4x4 trackerSpace = Matrix4x4.TRS(camPos, camRot, Vector3.one);
- Matrix4x4 m = trackerSpace*(cloudSpace.inverse);
-
- if (useFiltering)
- mo.space.filter.RefinePose(m);
- else
- ARSpace.UpdateSpace(mo.space, m.GetColumn(3), m.rotation);
- LocalizerBase.GetLocalizerPose(out lastLocalizedPose, mapId, cloudSpace.GetColumn(3), cloudSpace.rotation, m.inverse, mapToEcef);
- map.NotifySuccessfulLocalization(mapId);
- OnPoseFound?.Invoke(lastLocalizedPose);
- }
- }
- else
- {
- LocalizerDebugLog(string.Format("GeoPose localization attempt failed after {0} seconds", elapsedTime));
- }
- };
- await j.RunJobAsync();
- image.Dispose();
- }
- base.LocalizeGeoPose(mapIds);
- }
-
- public override async void Localize()
- {
- Debug.Log("Localize===>start");
- #if PLATFORM_LUMIN && UNITY_2020_1
- XRCameraImage image;
- #else
- XRCpuImage image;
- #endif
- ARCameraManager cameraManager = m_Sdk.cameraManager;
- var cameraSubsystem = cameraManager.subsystem;
- Debug.Log("Localize===>cameraSubsystem");
- #if PLATFORM_LUMIN && UNITY_2020_1
- if (cameraSubsystem != null && cameraSubsystem.TryGetLatestImage(out image))
- #else
- if (cameraSubsystem != null && cameraSubsystem.TryAcquireLatestCpuImage(out image))
- #endif
- {
- Debug.Log("Localize===>cameraSubsystem TryAcquireLatestCpuImage");
- stats.localizationAttemptCount++;
- Vector4 intrinsics;
- Vector3 camPos = m_Cam.transform.position;
- Quaternion camRot = m_Cam.transform.rotation;
- ARHelper.GetIntrinsics(out intrinsics);
- ARHelper.GetPlaneDataFast(ref m_PixelBuffer, image);
- if (m_PixelBuffer != IntPtr.Zero)
- {
- Vector3 pos = Vector3.zero;
- Quaternion rot = Quaternion.identity;
- float startTime = Time.realtimeSinceStartup;
- Task<int> t = Task.Run(() =>
- {
- return Immersal.Core.LocalizeImage(out pos, out rot, image.width, image.height, ref intrinsics, m_PixelBuffer);
- });
- await t;
- int mapHandle = t.Result;
- int mapId = ARMap.MapHandleToId(mapHandle);
- float elapsedTime = Time.realtimeSinceStartup - startTime;
- if (mapId > 0 && ARSpace.mapIdToOffset.ContainsKey(mapId))
- {
- ARHelper.GetRotation(ref rot);
- pos = ARHelper.SwitchHandedness(pos);
- rot = ARHelper.SwitchHandedness(rot);
- LocalizerDebugLog(string.Format("Relocalized in {0} seconds", elapsedTime));
- stats.localizationSuccessCount++;
- if (mapId != lastLocalizedMapId)
- {
- if (resetOnMapChange)
- {
- Reset();
- }
-
- lastLocalizedMapId = mapId;
- OnMapChanged?.Invoke(mapId);
- }
-
- MapOffset mo = ARSpace.mapIdToOffset[mapId];
- Matrix4x4 offsetNoScale = Matrix4x4.TRS(mo.position, mo.rotation, Vector3.one);
- Vector3 scaledPos = Vector3.Scale(pos, mo.scale);
- Matrix4x4 cloudSpace = offsetNoScale * Matrix4x4.TRS(scaledPos, rot, Vector3.one);
- Matrix4x4 trackerSpace = Matrix4x4.TRS(camPos, camRot, Vector3.one);
- Matrix4x4 m = trackerSpace * (cloudSpace.inverse);
- if (useFiltering)
- mo.space.filter.RefinePose(m);
- else
- ARSpace.UpdateSpace(mo.space, m.GetColumn(3), m.rotation);
- GetLocalizerPose(out lastLocalizedPose, mapId, pos, rot, m.inverse);
- OnPoseFound?.Invoke(lastLocalizedPose);
- ARMap map = ARSpace.mapIdToMap[mapId];
- map.NotifySuccessfulLocalization(mapId);
- }
- else
- {
- LocalizerDebugLog(string.Format("Localization attempt failed after {0} seconds", elapsedTime));
- }
- }
- image.Dispose();
- }
- base.Localize();
- }
- }
- }
|