mirror of
https://github.com/unclshura/splitter.git
synced 2026-06-22 00:22:01 +00:00
6 lines
146 B
C#
6 lines
146 B
C#
namespace splitter.algo;
|
|
|
|
public interface IObjectDetector : IDisposable
|
|
{
|
|
List<DetectedPerson> DetectAll(SingleTask job, Mat frameCont);
|
|
} |