mirror of
https://github.com/unclshura/splitter.git
synced 2026-06-21 16:12:01 +00:00
9 lines
136 B
C#
9 lines
136 B
C#
namespace splitter.algo;
|
|
|
|
public struct DetectedPerson
|
|
{
|
|
public ulong Id;
|
|
public Rect Box;
|
|
public Point2f Center;
|
|
}
|