splitter/Splitter-UI/Services/DummyDetector.cs

11 lines
245 B
C#

using OpenCvSharp;
using splitter.algo;
namespace Splitter_UI.Services;
internal class DummyDetector : IObjectDetector
{
public List<(OpenCvSharp.Rect box, Point2f center)> DetectAll(Mat frameCont) => [];
public void Dispose() {}
}