mirror of
https://github.com/unclshura/splitter.git
synced 2026-06-22 00:22:01 +00:00
10 lines
221 B
C#
10 lines
221 B
C#
using OpenCvSharp;
|
|
|
|
namespace Splitter_UI.Services;
|
|
|
|
internal class DummyDetector : IObjectDetector
|
|
{
|
|
public List<(Rect box, splitter.Point2f center)> DetectAll(Mat frameCont) => [];
|
|
public void Dispose() {}
|
|
}
|