work on well of souls and yolo detection
This commit is contained in:
parent
3456e0d62a
commit
40d30115bf
41 changed files with 3031 additions and 148 deletions
|
|
@ -10,3 +10,14 @@ public record DetectionSnapshot(
|
|||
IReadOnlyList<DetectedEnemy> Enemies,
|
||||
long Timestamp,
|
||||
float InferenceMs);
|
||||
|
||||
public record DetectedBoss(
|
||||
string ClassName,
|
||||
float Confidence,
|
||||
int X, int Y, int Width, int Height,
|
||||
int Cx, int Cy);
|
||||
|
||||
public record BossSnapshot(
|
||||
IReadOnlyList<DetectedBoss> Bosses,
|
||||
long Timestamp,
|
||||
float InferenceMs);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue