gitextract__ij81bq6/ ├── .gitignore ├── .vsconfig ├── Assets/ │ ├── Models/ │ │ ├── coco.txt │ │ ├── coco.txt.meta │ │ ├── food100.txt │ │ ├── food100.txt.meta │ │ ├── yolov2-tiny-food-freeze.onnx │ │ ├── yolov2-tiny-food-freeze.onnx.meta │ │ ├── yolov3-tiny-416.onnx │ │ └── yolov3-tiny-416.onnx.meta │ ├── Models.meta │ ├── Prefabs/ │ │ ├── AR Plane Debug Visualizer.prefab │ │ ├── AR Plane Debug Visualizer.prefab.meta │ │ ├── AR Point Cloud Debug Visualizer.prefab │ │ ├── AR Point Cloud Debug Visualizer.prefab.meta │ │ ├── DetectorTestPlane.prefab │ │ ├── DetectorTestPlane.prefab.meta │ │ ├── Mats/ │ │ │ ├── AR Simulation Plane Material.mat │ │ │ ├── AR Simulation Plane Material.mat.meta │ │ │ ├── TestMat.mat │ │ │ └── TestMat.mat.meta │ │ ├── Mats.meta │ │ ├── Text Anchor.prefab │ │ └── Text Anchor.prefab.meta │ ├── Prefabs.meta │ ├── Resources/ │ │ └── Retry.png.meta │ ├── Resources.meta │ ├── Scenes/ │ │ ├── Detect.unity │ │ └── Detect.unity.meta │ ├── Scenes.meta │ ├── Scripts/ │ │ ├── AnchorCreator.cs │ │ ├── AnchorCreator.cs.meta │ │ ├── Detector.cs │ │ ├── Detector.cs.meta │ │ ├── DetectorYolo2.cs │ │ ├── DetectorYolo2.cs.meta │ │ ├── DetectorYolo3.cs │ │ ├── DetectorYolo3.cs.meta │ │ ├── GraphicsWorker.cs │ │ ├── GraphicsWorker.cs.meta │ │ ├── NewText.cs │ │ ├── NewText.cs.meta │ │ ├── PhoneARCamera.cs │ │ ├── PhoneARCamera.cs.meta │ │ ├── TextureTools.cs │ │ └── TextureTools.cs.meta │ ├── Scripts.meta │ ├── XR/ │ │ ├── Loaders/ │ │ │ ├── AR Core Loader.asset │ │ │ ├── AR Core Loader.asset.meta │ │ │ ├── AR Kit Loader.asset │ │ │ ├── AR Kit Loader.asset.meta │ │ │ ├── AR Simulation Loader.asset │ │ │ └── AR Simulation Loader.asset.meta │ │ ├── Loaders.meta │ │ ├── Settings/ │ │ │ ├── AR Core Loader Settings.asset │ │ │ ├── AR Core Loader Settings.asset.meta │ │ │ ├── AR Core Settings.asset │ │ │ ├── AR Core Settings.asset.meta │ │ │ ├── AR Kit Settings.asset │ │ │ ├── AR Kit Settings.asset.meta │ │ │ ├── AR Simulation Loader Settings.asset │ │ │ └── AR Simulation Loader Settings.asset.meta │ │ ├── Settings.meta │ │ ├── XRGeneralSettings.asset │ │ └── XRGeneralSettings.asset.meta │ └── XR.meta ├── LICENSE ├── Packages/ │ └── manifest.json ├── ProjectSettings/ │ ├── AudioManager.asset │ ├── BurstAotSettings_Android.json │ ├── BurstAotSettings_StandaloneOSX.json │ ├── BurstAotSettings_iOS.json │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── NavMeshAreas.asset │ ├── NetworkManager.asset │ ├── PackageManagerSettings.asset │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ ├── VersionControlSettings.asset │ ├── XRPackageSettings.asset │ └── XRSettings.asset ├── README.md └── UserSettings/ └── EditorUserSettings.asset