SYMBOL INDEX (77 symbols across 8 files) FILE: Assets/Scripts/AnchorCreator.cs class AnchorCreator (line 6) | public class AnchorCreator : MonoBehaviour method RemoveAllAnchors (line 8) | public void RemoveAllAnchors() method Awake (line 19) | void Awake() method CreateAnchor (line 27) | ARAnchor CreateAnchor(in ARRaycastHit hit) method Pos2Anchor (line 36) | private bool Pos2Anchor(float x, float y, BoundingBox outline) method Update (line 72) | void Update() FILE: Assets/Scripts/Detector.cs type Detector (line 7) | public interface Detector method Start (line 10) | void Start(); method Detect (line 11) | IEnumerator Detect(Color32[] picture, System.Action... class DimensionsBase (line 15) | public class DimensionsBase class BoundingBoxDimensions (line 24) | public class BoundingBoxDimensions : DimensionsBase { } class CellDimensions (line 26) | class CellDimensions : DimensionsBase { } class BoundingBox (line 29) | public class BoundingBox method ToString (line 45) | public override string ToString() FILE: Assets/Scripts/DetectorYolo2.cs class DetectorYolo2 (line 10) | public class DetectorYolo2 : MonoBehaviour, Detector method Start (line 54) | public void Start() method Detect (line 65) | public IEnumerator Detect(Color32[] picture, System.Action ParseOutputs(Tensor yoloModelOutput, float ... method Sigmoid (line 150) | private float Sigmoid(float value) method Softmax (line 158) | private float[] Softmax(float[] values) method ExtractBoundingBoxDimensions (line 168) | private BoundingBoxDimensions ExtractBoundingBoxDimensions(Tensor mode... method GetConfidence (line 180) | private float GetConfidence(Tensor modelOutput, int x, int y, int chan... method MapBoundingBoxToCell (line 187) | private CellDimensions MapBoundingBoxToCell(int x, int y, int box, Bou... method ExtractClasses (line 199) | public float[] ExtractClasses(Tensor modelOutput, int x, int y, int ch... method GetTopResult (line 213) | private ValueTuple GetTopResult(float[] predictedClasses) method IntersectionOverUnion (line 222) | private float IntersectionOverUnion(Rect boundingBoxA, Rect boundingBoxB) method FilterBoundingBoxes (line 245) | private IList FilterBoundingBoxes(IList boxe... FILE: Assets/Scripts/DetectorYolo3.cs class DetectorYolo3 (line 9) | public class DetectorYolo3 : MonoBehaviour, Detector method Start (line 58) | public void Start() method Detect (line 71) | public IEnumerator Detect(Color32[] picture, System.Action ParseOutputs(Tensor yoloModelOutput, float ... method Sigmoid (line 160) | private float Sigmoid(float value) method Softmax (line 168) | private float[] Softmax(float[] values) method ExtractBoundingBoxDimensions (line 178) | private BoundingBoxDimensions ExtractBoundingBoxDimensions(Tensor mode... method GetConfidence (line 190) | private float GetConfidence(Tensor modelOutput, int x, int y, int chan... method MapBoundingBoxToCell (line 197) | private CellDimensions MapBoundingBoxToCell(int x, int y, int box, Bou... method ExtractClasses (line 209) | public float[] ExtractClasses(Tensor modelOutput, int x, int y, int ch... method GetTopResult (line 223) | private ValueTuple GetTopResult(float[] predictedClasses) method IntersectionOverUnion (line 232) | private float IntersectionOverUnion(Rect boundingBoxA, Rect boundingBoxB) method FilterBoundingBoxes (line 255) | private IList FilterBoundingBoxes(IList boxe... FILE: Assets/Scripts/GraphicsWorker.cs class GraphicsWorker (line 6) | public class GraphicsWorker: MonoBehaviour method GetWorker (line 9) | public static IWorker GetWorker(Model model) FILE: Assets/Scripts/NewText.cs class NewText (line 3) | public class NewText: MonoBehaviour { method Start (line 8) | void Start() method LateUpdate (line 15) | void LateUpdate() FILE: Assets/Scripts/PhoneARCamera.cs class PhoneARCamera (line 18) | public class PhoneARCamera : MonoBehaviour type Detectors (line 44) | public enum Detectors{ method OnEnable (line 72) | void OnEnable() method OnDisable (line 104) | void OnDisable() method OnRefresh (line 112) | public void OnRefresh() method OnCameraFrameReceived (line 126) | unsafe void OnCameraFrameReceived(ARCameraFrameEventArgs eventArgs) method OnGUI (line 189) | public void OnGUI() method GroupBoxOutlines (line 207) | private void GroupBoxOutlines() method IsSameObject (line 307) | private bool IsSameObject(BoundingBox outline1, BoundingBox outline2) method CalculateShift (line 331) | private void CalculateShift(int inputSize) method TFDetect (line 349) | private void TFDetect() method ProcessImage (line 369) | private IEnumerator ProcessImage(int inputSize, System.Action