splitter/splitter-cli/algo/IObjectDetector.cs

8 lines
162 B
C#

using OpenCvSharp;
namespace splitter.algo;
public interface IObjectDetector : IDisposable
{
List<(Rect box, Point2f center)> DetectAll(Mat frameCont);
}