You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I try to open the "TrackMarkers" Scene, add an Empty and add the ArucoCharucoBoard Script plus Aruco Object Displayer and also add it to the ArucoObjects in the ArucoObjectTracker, then I get the following two error messages:
NullReferenceException: Object reference not set to an instance of an object
ArucoUnity.Objects.Trackers.ArucoObjectsTracker.ArucoCamera_ImagesUpdated () (at Assets/ArucoUnity/Scripts/Objects/Trackers/ArucoObjectsTracker.cs:315)
ArucoUnity.Cameras.ArucoCamera.OnImagesUpdated () (at Assets/ArucoUnity/Scripts/Cameras/ArucoCamera.cs:177)
ArucoUnity.Cameras.ArucoCamera.Update () (at Assets/ArucoUnity/Scripts/Cameras/ArucoCamera.cs:67)
Is tracking a Charuco Board not supported?
Thanks!
The text was updated successfully, but these errors were encountered:
Some discrepancies between the code on GitHub and the .unitypackage cause this.
This line: if (arucoCharucoBoard.DetectedIds.Size() > 0)
should be: if (arucoCharucoBoard.DetectedIds != null && arucoCharucoBoard.DetectedIds.Size() > 0)
When I try to open the "TrackMarkers" Scene, add an Empty and add the ArucoCharucoBoard Script plus Aruco Object Displayer and also add it to the ArucoObjects in the ArucoObjectTracker, then I get the following two error messages:
Is tracking a Charuco Board not supported?
Thanks!
The text was updated successfully, but these errors were encountered: