mirror of
https://github.com/unclshura/splitter.git
synced 2026-06-22 00:22:01 +00:00
8 lines
157 B
C#
8 lines
157 B
C#
using OpenCvSharp;
|
|
|
|
namespace splitter;
|
|
|
|
public interface IObjectDetector : IDisposable
|
|
{
|
|
List<(Rect box, Point2f center)> DetectAll(Mat frameCont);
|
|
} |