Fix in models and condifence score

This commit is contained in:
Ignacio Gómez Puga
2025-03-13 23:18:43 -06:00
parent e83606f620
commit f317c8204d
52 changed files with 1478 additions and 666 deletions

View File

@@ -135,7 +135,7 @@ public class ObjectDetectionSample : MonoBehaviour
Debug.Log($"Detected: {categoryName} with confidence {confidence * 100:F1}%");
string label = $"{categoryName} {confidence * 100:F1}%";
string label = $"{categoryName}";
_drawRect.CreateRect(rect, _colors[i % _colors.Length], label);
}
}